Add support for OpenBSD

It just rejects the generic System V ABI and has other syscall numbers.
This commit is contained in:
2016-12-24 22:27:38 +01:00
parent cf6c1e67ba
commit b846a7a0ea
3 changed files with 21 additions and 8 deletions

View File

@@ -1,11 +1,13 @@
# All we need is C99 and POSIX, which this should make available
CFLAGS = -std=gnu99
NAMES = bfc-amd64-linux
NAMES = bfc-amd64-linux bfc-amd64-openbsd
all: $(NAMES)
%: %.c
$(CC) $(CPPFLAGS) $(CFLAGS) $< -o $@
%-linux: %.c
$(CC) $(CPPFLAGS) $(CFLAGS) $< -o $@ -DTARGET_LINUX
%-openbsd: %.c
$(CC) $(CPPFLAGS) $(CFLAGS) $< -o $@ -DTARGET_OPENBSD
clean:
rm -f $(NAMES)