Makefile changes to fix the clean option

Removed unnecessary geoip files from CVS :o
This commit is contained in:
Scott Ehlert
2006-04-12 16:52:28 +00:00
parent 0939c54048
commit c1866f8156
62 changed files with 12 additions and 17036 deletions

View File

@ -9,14 +9,17 @@ MM_ROOT = ../../metamod/metamod
OPT_FLAGS = -O3 -funroll-loops -s -pipe
DEBUG_FLAGS = -g -ggdb3
CPP = gcc
NAME = geoip_amxx
NAME = geoip
BIN_SUFFIX_32 = amxx_i386.so
BIN_SUFFIX_64 = amxx_amd64.so
OBJECTS = GeoIP.c amxxmodule.cpp geoip_amxx.cpp
LINK =
INCLUDE = -I. -I$(HLSDK) -I$(HLSDK)/dlls -I$(HLSDK)/engine -I$(HLSDK)/game_shared -I$(HLSDK)/game_shared \
-I$(MM_ROOT) -Lzlib -I$(HLSDK)/common
-I$(MM_ROOT) -I$(HLSDK)/common
ifeq "$(DEBUG)" "true"
BIN_DIR = Debug
@ -29,10 +32,10 @@ endif
CFLAGS += -DNDEBUG -fPIC -Wno-deprecated -fno-exceptions -DHAVE_STDINT_H -static-libgcc -fno-rtti
ifeq "$(AMD64)" "true"
BINARY = $(NAME)_amd64.so
BINARY = $(NAME)_$(BIN_SUFFIX_64)
CFLAGS += -DPAWN_CELL_SIZE=64 -DHAVE_I64 -m64
else
BINARY = $(NAME)_i386.so
BINARY = $(NAME)_$(BIN_SUFFIX_32)
CFLAGS += -DPAWN_CELL_SIZE=32 -DJIT -DASM32
OPT_FLAGS += -march=i586
endif
@ -60,7 +63,9 @@ default: all
clean:
rm -rf Release/*.o
rm -rf Release/$(BINARY)
rm -rf Release/$(NAME)_$(BIN_SUFFIX_32)
rm -rf Release/$(NAME)_$(BIN_SUFFIX_64)
rm -rf Debug/*.o
rm -rf Debug/$(BINARY)
rm -rf Debug/$(NAME)_$(BIN_SUFFIX_32)
rm -rf Debug/$(NAME)_$(BIN_SUFFIX_64)