Makefile 353 B

12345678910111213141516171819202122232425
  1. #
  2. # Author: Lasse Collin
  3. #
  4. # This file has been put into the public domain.
  5. # You can do whatever you want with this file.
  6. #
  7. CC = c99
  8. CFLAGS = -g
  9. LDFLAGS = -llzma
  10. PROGS = \
  11. 01_compress_easy \
  12. 02_decompress \
  13. 03_compress_custom \
  14. 04_compress_easy_mt \
  15. 11_file_info
  16. all: $(PROGS)
  17. .c:
  18. $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
  19. clean:
  20. -rm -f $(PROGS)