Skip to content

Commit

Permalink
- Fix publish path for build binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfred Reynolds committed Sep 9, 2013
1 parent 225199e commit 4c18ced
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion linux/Makefile.dmcdll
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ dmc.$(SHLIBEXT): $(DMCDLL_OBJS) $(PM_OBJS) $(GAME_SHARED_OBJS)
$(CLINK) $(SHLIBLDFLAGS) -o $(BUILD_DIR)/$@ $(DMCDLL_OBJS) $(PM_OBJS) $(GAME_SHARED_OBJS) $(LDFLAGS) $(CPP_LIB)
p4 edit ../../game/mod/dlls/$@
cp $(BUILD_DIR)/$@ ../../game/mod/dlls
./gendbg.sh ../../game/dmc/mod/dmc.$(SHLIBEXT)
./gendbg.sh ../../game/mod/dlls/dmc.$(SHLIBEXT)

$(DMCDLL_OBJ_DIR)/%.o : $(DMCDLL_SRC_DIR)/%.cpp
$(DO_DMCDLL_CC)
Expand Down
2 changes: 1 addition & 1 deletion linux/Makefile.hl_cdll
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ INCLUDEDIRS=-I$(HL_SRC_DIR) -I../dlls -I../tfc -I$(COMMON_SRC_DIR) -I$(PUBLIC_SR
ifeq ($(OS),Darwin)
LDFLAGS=$(SHLIBLDFLAGS) $(CPP_LIB) -framework Carbon $(CFG)/vgui.dylib -L. -lSDL2-2.0.0
else
LDFLAGS=$(SHLIBLDFLAGS) $(CPP_LIB) -L$(CFG) vgui.so -L. libSDL2-2.0.so.0
LDFLAGS=$(SHLIBLDFLAGS) $(CPP_LIB) -L$(CFG) vgui.so -L. libSDL2-2.0.so.0
endif

DO_CC=$(CPLUS) $(INCLUDEDIRS) $(CFLAGS) -o $@ -c $<
Expand Down

0 comments on commit 4c18ced

Please sign in to comment.