Implemented the minor changes into UDPNetworkPacket

This commit is contained in:
Kayne Ruse
2014-06-04 23:08:52 +10:00
parent 23364b2810
commit 46dff9b97b
2 changed files with 8 additions and 6 deletions
+3 -1
View File
@@ -1,5 +1,5 @@
#config
INCLUDES+=. ../gameplay ../map ../utilities
INCLUDES+=. packet serial ../gameplay ../map ../utilities
LIBS+=
CXXFLAGS+=-std=c++11 $(addprefix -I,$(INCLUDES))
@@ -17,6 +17,8 @@ OUT=$(addprefix $(OUTDIR)/,libcommon.a)
#targets
all: $(OBJ) $(OUT)
ar -crs $(OUT) $(OBJ)
$(MAKE) -C packet
$(MAKE) -C serial
$(OBJ): | $(OBJDIR)