summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b8c7ec6..9bbd07b 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ MODULES = src
4 4
5o_src = multitouch 5o_src = multitouch
6 6
7TARGETS = #$(addsuffix /test,$(MODULES)) 7TARGETS = $(addsuffix /test,$(MODULES))
8 8
9OBJECTS = $(addsuffix .o,\ 9OBJECTS = $(addsuffix .o,\
10 $(foreach mod,$(MODULES),\ 10 $(foreach mod,$(MODULES),\
@@ -26,7 +26,9 @@ OPTS = -O3
26.PHONY: all clean 26.PHONY: all clean
27.PRECIOUS: obj/%.o 27.PRECIOUS: obj/%.o
28 28
29all: $(OBJS) $(TLIB) $(TOBJ) $(TBIN) 29all: $(OBJS) $(TLIB) $(TOBJ)
30
31test: $(TBIN)
30 32
31bin/%: obj/%.o 33bin/%: obj/%.o
32 @mkdir -p $(@D) 34 @mkdir -p $(@D)