diff --git a/Makefile b/Makefile index 431d386..0a91702 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/tools/kore-serve/conf/build.conf b/tools/kore-serve/conf/build.conf index a4a1dc2..c766d6d 100644 --- a/tools/kore-serve/conf/build.conf +++ b/tools/kore-serve/conf/build.conf @@ -9,3 +9,19 @@ cflags=-Wpointer-arith -Wcast-qual -Wsign-compare dev { } + +darwin { +} + +openbsd { +} + +netbsd { +} + +freebsd { +} + +linux { + cflags=-D_GNU_SOURCE +}