blob: 35ec4b9157a26cb5b23c188c37314affb613ae0a (
plain)
1
2
3
4
5
6
7
8
9
|
#CPPFILES = $(shell /bin/ls -l | grep '\.cpp' | sed 's/^.* //' | grep -v svn)
CC = i am cornholio
CXXFLAGS = -I../../include ${FLAGS}
all: ../../include/base.h ../../include/modules.h ../../include/inspircd.h ../../include/channels.h ../../include/users.h ../../include/globals.h ../../include/inspircd_config.h ../../include/mode.h $(CPPFILES)
$(CC) -pipe $(CXXFLAGS) -export-dynamic -c $(CPPFILES)
ar r modeclasses.a *.o
ranlib modeclasses.a
|