1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-07 12:48:45 +10:00
collapseos/tools/cfspack/Makefile
Virgil Dupras d9db0a824e Make makefiles and shell scripts portable
It's no longer required to use `gmake` under OpenBSD and shell scripts
no longer require bash.
2019-12-09 09:45:22 -05:00

15 lines
209 B
Makefile

TARGETS = cfspack cfsunpack
.PHONY: all
all: $(TARGETS)
cfspack: cfspack.c
$(CC) $(CFLAGS) -o $@ cfspack.c
cfsunpack: cfsunpack.c
$(CC) $(CFLAGS) -o $@ cfsunpack.c
.PHONY: clean
clean:
rm -f $(TARGETS)