diff options
Diffstat (limited to 'Makefile.win')
| -rw-r--r-- | Makefile.win | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile.win b/Makefile.win index 16a081e..2cb4d57 100644 --- a/Makefile.win +++ b/Makefile.win @@ -43,7 +43,7 @@ CLIENT_LIBS=\ -lm #-lstdc++-6 -CFLAGS+=-DNNG_STATIC_LIB +CFLAGS+=-DNNG_STATIC_LIB -g ifeq ($(DEBUG), true) else LDFLAGS += -mwindows @@ -66,6 +66,9 @@ doc: documentation documentation: $(MDOC) -p src -o doc -t "Brok[en]gine" -i README.md -d reference -m "markdown" +test: + busted + bin/client/bin/brokengine_client.exe : $(client_objs) $(shared_objs) $(lib_objs) $(Q)echo "Linking $@" $(Q)$(LD) $(LDFLAGS) -o $@ $^ $(CLIENT_LIB_DIRS) $(CLIENT_LIBS) # -Wl,--verbose @@ -89,6 +92,9 @@ $(server_objs) : build/server/%.o : src/server/%.cpp src/server/%.hpp bin/client/bin/Irrlicht.dll : lib/irrlicht/bin/Win32-gcc/Irrlicht.dll cp $^ $@ +lib/irrlicht/bin/Win32-gcc/Irrlicht.dll : lib/irrlicht/source/Irrlicht/Makefile + cd lib/irrlicht/source/Irrlicht && $(MAKE) win32 + lib/nng/static/libnng.a: $(Q)echo "Make $@" $(Q)mkdir lib/nng/static |
