bfc/Makefile

13 lines
212 B
Makefile
Raw Normal View History

2016-12-22 22:58:20 +01:00
# All we need is C99 and POSIX, which this should make available
CFLAGS = -std=gnu99
NAMES = bfc-amd64-linux
all: $(NAMES)
%: %.c
$(CC) $(CPPFLAGS) $(CFLAGS) $< -o $@
clean:
rm -f $(NAMES)
.PHONY: all clean