Makefile | Makefile | |||
---|---|---|---|---|
skipping to change at line 15 | skipping to change at line 15 | |||
# You can do whatever you want with this file. | # You can do whatever you want with this file. | |||
# | # | |||
CC = c99 | CC = c99 | |||
CFLAGS = -g | CFLAGS = -g | |||
LDFLAGS = -llzma | LDFLAGS = -llzma | |||
PROGS = \ | PROGS = \ | |||
01_compress_easy \ | 01_compress_easy \ | |||
02_decompress \ | 02_decompress \ | |||
03_compress_custom | 03_compress_custom \ | |||
04_compress_easy_mt | ||||
all: $(PROGS) | all: $(PROGS) | |||
.c: | .c: | |||
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) | $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) | |||
clean: | clean: | |||
-rm -f $(PROGS) | -rm -f $(PROGS) | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 2 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |