fixed: was potentially storing stack-allocated name strings in the trackmap
[andemo] / Makefile
index fa01441..bf39c07 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -38,6 +38,9 @@ $(bin): $(obj) Makefile $(libs)
 %.w32.o: %.c
        $(CC) -o $@ $(CFLAGS) -c $<
 
+$(libs_path)/%.a:
+       $(MAKE) -C libs
+
 .PHONY: clean
 clean:
        rm -f $(obj) $(bin)
@@ -66,6 +69,10 @@ android-clean:
 android-libs:
        $(MAKE) -f Makefile.android libs
 
+.PHONY: install
+install:
+       $(MAKE) -f Makefile.android install
+
 .PHONY: run
 run:
        $(MAKE) -f Makefile.android install run