Initial commit

This commit is contained in:
2016-12-22 22:58:20 +01:00
commit 128fb157b3
13 changed files with 3286 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,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