diff options
Diffstat (limited to 'src/modes/Makefile')
-rw-r--r-- | src/modes/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modes/Makefile b/src/modes/Makefile index 9b2ea75ca..10afd15d8 100644 --- a/src/modes/Makefile +++ b/src/modes/Makefile @@ -1,8 +1,8 @@ -CPPFILES = `/bin/ls -l | grep '\.cpp' | sed 's/^.* //' | grep -v svn` +#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 +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 -export-dynamic -c $(CPPFILES) ar r modeclasses.a *.o ranlib modeclasses.a |