diff options
-rw-r--r-- | src/Makefile | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index 86f890ca3..000000000 --- a/src/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -# Insp Makefile :p -# -# -# - -CC = im a cheezeball - -SRC_1 = inspircd.cpp inspircd_util.cpp inspircd_io.cpp -SRC_2 = dynamic.cpp users.cpp modules.cpp wildcard.cpp servers.cpp - -SRC = $(SRC_1) $(SRC_2) -OBJS = $(SRC:.cpp=.o) - -CXXFLAGS = -I$../../include ${FLAGS} - -all: inspircd - -inspircd: $(OBJS) - $(CXX) -rdynamic $^ -o $@ $(LDLIBS) - |