comparison cpack/dml/scripts/compression/Makefile @ 0:718306e29690 tip

commiting public release
author Daniel Wolff
date Tue, 09 Feb 2016 21:05:06 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:718306e29690
1 CC = c99
2 CFLAGS = -g -I/opt/local/include
3 LDFLAGS = -L/opt/local/lib -llzma
4
5 PROGS = dlzma
6
7 all: $(PROGS)
8
9 .c:
10 $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
11
12 clean:
13 -rm -f $(PROGS)