aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 5bb5db11a41e091c4f2c71b9b871c27fb30fb940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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