]> wimlib.net Git - wimlib/blobdiff - examples/Makefile
Add "examples" directory
[wimlib] / examples / Makefile
diff --git a/examples/Makefile b/examples/Makefile
new file mode 100644 (file)
index 0000000..ef84a9b
--- /dev/null
@@ -0,0 +1,13 @@
+CFLAGS := -Wall -s
+LDLIBS := -lwim
+
+all:applywim makewim
+
+applywim:applywim.c
+
+makewim:makewim.c
+
+clean:
+       rm -f applywim makewim
+
+.PHONY: all clean