added apex audio system
[gbajam21] / tools / conv2aas / Makefile
diff --git a/tools/conv2aas/Makefile b/tools/conv2aas/Makefile
new file mode 100644 (file)
index 0000000..af55b98
--- /dev/null
@@ -0,0 +1,11 @@
+obj = conv2aas.o
+bin = conv2aas
+
+CFLAGS = -pedantic -Wall -g
+
+$(bin): $(obj)
+       $(CC) -o $@ $(obj) $(LDFLAGS)
+
+.PHONY: clean
+clean:
+       rm -f $(obj) $(bin)