Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
209B

  1. TARGETS = cfspack cfsunpack
  2. .PHONY: all
  3. all: $(TARGETS)
  4. cfspack: cfspack.c
  5. $(CC) $(CFLAGS) -o $@ cfspack.c
  6. cfsunpack: cfsunpack.c
  7. $(CC) $(CFLAGS) -o $@ cfsunpack.c
  8. .PHONY: clean
  9. clean:
  10. rm -f $(TARGETS)