mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-23 01:59:43 +08:00
21 lines
647 B
Makefile
21 lines
647 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) $(CFLAGS) -o $@ -c $<
|
|
|
|
|
|
clean:
|
|
rm -rf obj/$(NAME)_$(ARCH)
|
|
rm -f $(NAME)_$(ARCH).$(SHLIBEXT)
|