]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/Makefile
86f890ca3f8d42c1c9004f7bc90346065296f230
[user/henk/code/inspircd.git] / src / Makefile
1 # Insp Makefile :p
2 #
3 #
4 #
5
6 CC = im a cheezeball
7
8 SRC_1 = inspircd.cpp inspircd_util.cpp inspircd_io.cpp
9 SRC_2 = dynamic.cpp users.cpp modules.cpp wildcard.cpp servers.cpp
10
11 SRC = $(SRC_1) $(SRC_2)
12 OBJS = $(SRC:.cpp=.o)
13
14 CXXFLAGS = -I$../../include ${FLAGS}
15
16 all: inspircd
17
18 inspircd: $(OBJS)
19         $(CXX) -rdynamic $^ -o $@ $(LDLIBS)
20