reorder folders

This commit is contained in:
Julian
2020-02-22 16:33:00 -03:00
commit 6cdc2ea18c
171 changed files with 60310 additions and 0 deletions

56
src/dlls/Makefile Normal file
View File

@@ -0,0 +1,56 @@
CPP = gcc
BASEFLAGS = -Dstricmp=strcasecmp -Dstrcmpi=strcasecmp
CPPFLAGS = ${BASEFLAGS} -m386 -O2 -w -I. -I../engine -I../common -I../pm_shared -I../../metamod
OBJ = \
agrunt.o \
AI_BaseNPC_Schedule.o \
animating.o \
animation.o \
apache.o \
barney.o \
bigmomma.o \
bullsquid.o \
cmbase.o \
combat.o \
controller.o \
defaultai.o \
dllapi.o \
effects.o \
ggrenade.o \
h_ai.o \
h_export.o \
hassassin.o \
headcrab.o \
hgrunt.o \
hornet.o \
houndeye.o \
islave.o \
monster_api.o \
monster_config.o \
monsters.o \
monsterstate.o \
nodes.o \
scientist.o \
skill.o \
sound.o \
squeakgrenade.o \
subs.o \
talkmonster.o \
util.o \
weapons.o \
zombie.o
monster_mm_i386.so: ${OBJ}
${CPP} -fPIC -shared -o $@ ${OBJ}
clean:
-rm -f *.o
-rm -f *.so
%.o: %.cpp
${CPP} ${CPPFLAGS} -c $< -o $@
%.o: %.c
${CPP} ${CPPFLAGS} -c $< -o $@