altos/scheme: Add Makefile for scheme test app
[fw/altos] / src / scheme / test / Makefile
diff --git a/src/scheme/test/Makefile b/src/scheme/test/Makefile
new file mode 100644 (file)
index 0000000..9d39d33
--- /dev/null
@@ -0,0 +1,19 @@
+include ../Makefile-inc
+
+vpath %.o .
+vpath %.c ..
+vpath %.h ..
+
+SRCS=$(SCHEME_SRCS) ao_scheme_test.c
+
+OBJS=$(SRCS:.c=.o)
+
+CFLAGS=-O2 -g -Wall -Wextra -I. -I..
+
+ao_scheme_test: $(OBJS)
+       cc $(CFLAGS) -o $@ $(OBJS) -lm
+
+$(OBJS): $(SCHEME_HDRS)
+
+clean::
+       rm -f $(OBJS) ao_scheme_test