Add flavors for kore-serve for all platforms.

This commit is contained in:
Joris Vink 2020-09-09 22:31:46 +02:00
parent 51e9c64fc0
commit e87ba0f2d8
2 changed files with 19 additions and 2 deletions

View File

@ -175,7 +175,7 @@ $(VERSION): force
exit 1; \
fi
$(KODEV):
$(KODEV): src/cli.c
$(MAKE) -C kodev
$(KORE): $(OBJDIR) $(S_OBJS)
@ -229,7 +229,8 @@ uninstall:
tools-build: $(KODEV)
for t in $(TOOLS); do \
cd tools/$$t; \
env KODEV_OUTPUT=$(KOREPATH) $(KOREPATH)/$(KODEV) build; \
env KODEV_OUTPUT=$(KOREPATH) KORE_BUILD_FLAVOR=$(OSNAME) \
$(KOREPATH)/$(KODEV) build; \
cd $(KOREPATH); \
done

View File

@ -9,3 +9,19 @@ cflags=-Wpointer-arith -Wcast-qual -Wsign-compare
dev {
}
darwin {
}
openbsd {
}
netbsd {
}
freebsd {
}
linux {
cflags=-D_GNU_SOURCE
}