Index: doc/examples/Makefile |
=================================================================== |
--- doc/examples/Makefile (revision 0) |
+++ doc/examples/Makefile (revision 0) |
@@ -0,0 +1,23 @@ |
+# |
+# Author: Lasse Collin |
+# |
+# This file has been put into the public domain. |
+# You can do whatever you want with this file. |
+# |
+ |
+CC = c99 |
+CFLAGS = -g |
+LDFLAGS = -llzma |
+ |
+PROGS = \ |
+ 01_compress_easy \ |
+ 02_decompress \ |
+ 03_compress_custom |
+ |
+all: $(PROGS) |
+ |
+.c: |
+ $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) |
+ |
+clean: |
+ -rm -f $(PROGS) |
Property changes on: doc/examples/Makefile |
___________________________________________________________________ |
Added: svn:eol-style |
+ LF |