From 85ce325779c67004975f67475d3cebc05d66e197 Mon Sep 17 00:00:00 2001 From: frostycoolslug Date: Sun, 18 Apr 2004 00:42:44 +0000 Subject: Modules will no longer re-compile themselves if they havnt changed. Use ./configure -update to update your module listing in the makefiles. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@636 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/Makefile | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) (limited to 'src/modules/Makefile') diff --git a/src/modules/Makefile b/src/modules/Makefile index 60629b59c..36cbbe1cd 100644 --- a/src/modules/Makefile +++ b/src/modules/Makefile @@ -3,21 +3,11 @@ # Small modifications by # -CXXFLAGS = -I../../include ${FLAGS} +all: $(MODULES) -MODS = `/bin/ls *.cpp | sed 's/.cpp//'` -MODULES = $(MODS) - -MODS2 = `/bin/ls *.cpp` -MODULES2 = $(MODS2:.cpp=.so) - -main: - rm -f .make ; \ - for i in $(MODULES) ; do \ - echo "echo \"Compiling: $$i\"" >>.make ; \ - echo "$(CXX) $(CXXFLAGS) -shared -o $$i `echo $$i | sed 's/.so/.cpp/'`">>.make ; \ - done ; chmod u+x .make ; ./.make - - -all: main +%.so: + @$(MAKE) --no-print-directory TARGET=$(@:.so=) +$(TARGET).so: + $(CC) -I../../include $(FLAGS) -shared -o $@ $(TARGET).cpp + @cp $(TARGET).so $(MODPATH)$(TARGET).so -- cgit v1.2.3