From fb947d5615d96922efac7ecda941caab77dceb0f Mon Sep 17 00:00:00 2001 From: frostycoolslug Date: Sat, 3 Apr 2004 19:38:01 +0000 Subject: Fixed bugs in ./configure Created new Makefile Generator Removed some redundant makefiles. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@365 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/Makefile (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 000000000..981b075f7 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,22 @@ +# Insp Makefile :p +# +# (C) ChatSpike development team +# Makefile by +# Small modifications by +# + +CC = im a cheezeball + +SRC_1 = inspircd.cpp inspircd_util.cpp inspircd_io.cpp connection.cpp +SRC_2 = dynamic.cpp users.cpp modules.cpp wildcard.cpp servers.cpp channels.cpp + +SRC = $(SRC_1) $(SRC_2) +OBJS = $(SRC:.cpp=.o) + +CXXFLAGS = -I$../../include ${FLAGS} + +all: inspircd + +inspircd: $(OBJS) + $(CXX) -rdynamic $^ -o $@ $(LDLIBS) + -- cgit v1.2.3