diff options
author | 2010-08-05 00:44:42 +0300 | |
---|---|---|
committer | 2010-08-05 00:44:42 +0300 | |
commit | 162f048696c45792dd192223fc2786b54d9f0b21 (patch) | |
tree | b2a30780eaf0cdd60b6f89fad931b5f4ca1632c1 /tuiclient/Makefile | |
parent | Fix: scrolling for distfile queue list. (diff) | |
download | idfetch-162f048696c45792dd192223fc2786b54d9f0b21.tar.gz idfetch-162f048696c45792dd192223fc2786b54d9f0b21.tar.bz2 idfetch-162f048696c45792dd192223fc2786b54d9f0b21.zip |
Use .o files instead of .cpp in tuiclient.h
Diffstat (limited to 'tuiclient/Makefile')
-rw-r--r-- | tuiclient/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tuiclient/Makefile b/tuiclient/Makefile index f3176ee..1386b2e 100644 --- a/tuiclient/Makefile +++ b/tuiclient/Makefile @@ -38,8 +38,11 @@ all: clean $(BINS) # %.o: %.cxx $(CXX) -c -o $@ $(CXXFLAGS) $^ -%: %.o - $(CXX) -o $@ $(LIBS) $(CIBS) $^ +#%: %.o +# $(CXX) -o $@ $(LIBS) $(CIBS) $^ + +tuiclient: tuiclient.o config.o colors.o distfilewindow.o helpwindow.o log.o mainwindow.o tuidistfile.o twindow.o scrollwindow.o settings.o str.o + $(CXX) -o $@ -lncurses -lpthread $(LIBS) $(CIBS) $^ make clean_log: -rm -f ./logs/*.log |