hl2sdk/linux_sdk/Makefile.server
Scott Ehlert a4ef1cdba8 Imported tier1 and mathlib code from L4D2 SDK.
--HG--
extra : rebase_source : 6941c1a21f522b145832a7004b301cd3fd44115c
2012-05-21 02:48:36 -05:00

29 lines
758 B
Makefile

#
# wrapper Makefile for auto-generated make files
#
#
#############################################################################
# PROJECT MAKEFILES
#############################################################################
MAKE_FILE = Makefile.$(MOD_CONFIG)
-include $(MAKE_FILE)
#############################################################################
# The compiler command line for each src code file to compile
#############################################################################
DO_CC = $(CPLUS) $(INCLUDES) -DARCH=$(ARCH)
ifeq (_DEBUG,$(findstring _DEBUG,$(CFLAGS)))
DO_CC += $(DEFINES) $(DBG_CFLAGS)
else
DO_CC += $(CFLAGS)
endif
DO_CC += -o $@ -c $<
clean:
rm -rf obj/$(NAME)_$(ARCH)
rm -f $(NAME)_$(ARCH).$(SHLIBEXT)