summaryrefslogtreecommitdiff
path: root/ucoo/hal/frame_buffer/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ucoo/hal/frame_buffer/test/Makefile')
-rw-r--r--ucoo/hal/frame_buffer/test/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/ucoo/hal/frame_buffer/test/Makefile b/ucoo/hal/frame_buffer/test/Makefile
new file mode 100644
index 0000000..3aabcb6
--- /dev/null
+++ b/ucoo/hal/frame_buffer/test/Makefile
@@ -0,0 +1,13 @@
+BASE = ../../../..
+
+TARGETS = host
+PROGS = test_frame_buffer
+
+test_frame_buffer_SOURCES = test_frame_buffer.host.cc
+
+MODULES = ucoo/hal/frame_buffer
+
+include $(BASE)/build/top.mk
+
+host_CFLAGS += $(shell sdl2-config --cflags)
+host_LIBS += $(shell sdl2-config --libs)