diff options
| author | admin (centauri.fritz.box) <puppet@mx.buetow.org> | 2014-06-30 23:29:35 +0200 |
|---|---|---|
| committer | admin (centauri.fritz.box) <puppet@mx.buetow.org> | 2014-06-30 23:29:35 +0200 |
| commit | 002c8534bfe2c266959dd42c9c71c17182977d87 (patch) | |
| tree | 94b09a70cca7346b1361c299c843d316730dde9d /src/Makefile.in | |
| parent | 813ee1984130c44f737f27426cc8414d19cf3bd9 (diff) | |
| parent | 371cf3aa2a132401a4557e227577a9f3a57f4477 (diff) | |
Merge remote-tracking branch 'remotes/github/0.5-basic' into 0.5-basic0.5-basic
Diffstat (limited to 'src/Makefile.in')
| -rw-r--r-- | src/Makefile.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Makefile.in b/src/Makefile.in new file mode 100644 index 0000000..6f43bf9 --- /dev/null +++ b/src/Makefile.in @@ -0,0 +1,17 @@ +SRCS=chat.cpp s_chat.cpp conf.cpp s_conf.cpp cont.cpp html.cpp s_html.cpp lang.cpp s_lang.cpp main.cpp mutx.cpp s_mutx.cpp name.cpp pool.cpp reqp.cpp room.cpp sock.cpp s_sock.cpp thrd.cpp s_tool.cpp user.cpp sess.cpp sman.cpp s_sman.cpp +#logd.cpp modl.cpp s_modl.cpp cmnd.cpp +OBJS=$(SRCS:.cpp=.o) +CC=g++ +LDFLAGS=@LDFLAGS@ -lstdc++ -g +LDADD=-pthread -D_THREAD_SAFE +all: ychat +$(SRCS): + $(CC) $(CFLAGS) -c $*.cpp +ychat: $(OBJS) + $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LDADD) + @mv -f ychat .. +mrproper: clean + @rm -f Makefile config.log config.cache config.status + rm -f ../ychat +clean: + rm *.o |
