mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-08 07:28:06 +11:00
d9db0a824e
It's no longer required to use `gmake` under OpenBSD and shell scripts no longer require bash.
15 lines
209 B
Makefile
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)
|