diff options
author | frostycoolslug <frostycoolslug@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-08 22:39:46 +0000 |
---|---|---|
committer | frostycoolslug <frostycoolslug@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-08 22:39:46 +0000 |
commit | 2e5bad993ea8348397a47c03529870a3b99ed57b (patch) | |
tree | 41e2b383c3626c2ffa5c808e29934e08bfe7a7d3 /src/modules | |
parent | 793a44d06155cd93f08179a96967a75e347b2cb0 (diff) |
Added Dynamic src/modules/Makefile generation, during ./configure the script will search modules for /* $CompileFlags: */ and append any given flags to its g++ line.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1017 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/Makefile | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/modules/Makefile b/src/modules/Makefile deleted file mode 100644 index b0c50a569..000000000 --- a/src/modules/Makefile +++ /dev/null @@ -1,10 +0,0 @@ -# (C) ChatSpike development team -# Makefile by <Craig@ChatSpike.net> -# Many Thanks to Andrew Church <achurch@achurch.org> -# for assisting with making this work right. - -all: $(MODULES) - -%.so: %.cpp - $(CC) -I../../include $(FLAGS) -shared -o $@ $< - @cp $@ $(MODPATH)/ |