diff options
Diffstat (limited to 'src/modes/Makefile')
-rw-r--r-- | src/modes/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/modes/Makefile b/src/modes/Makefile new file mode 100644 index 000000000..a9eb29ac7 --- /dev/null +++ b/src/modes/Makefile @@ -0,0 +1,8 @@ +CPPFILES = `/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 + $(CC) -export-dynamic -c $(CPPFILES) + ar r modeclasses.a *.o + |