📄 makefile.in
字号:
srcdir = .CC = @CC@CXX = @CXX@CFLAGS = @CFLAGS@CXXFLAGS = @CXXFLAGS@LDFLAGS = @LDFLAGS@LIBS = -L$(srcdir)/.. -lsocket++ @NETWORK_LIBS@TESTSRCS = tdunread.C tdunwrite.C \ tdinread.C tdinwrite.C \ tsunread.C tsunwrite.C \ tsinread.C tsinwrite.C \ tpipe.C \ tsockpair.C \ tpopen.C tpopen-lpc.C tpopen-ftp.C \ tpopentest.C \ testall.C \ tnntp.C \ tsmtp.C \ tsendfiles.C \ thostnames.C \ twhois.C \ tfork.C tfork0.C \ tsecho.C tcecho.C \ tcsmtp.C \ tcftp.C \ tbind-0.C tbind-1.C \ tsig-0.CTESTOBJS = $(TESTSRCS:.C=.o)TESTS = $(TESTSRCS:.C=)DEPEND_SOURCES = $(srcdir)/*.C.SUFFIXES: .o .C .cc.cc.o .C.o: $(CXX) -c $(CXXFLAGS) -I$(srcdir) -I$(srcdir)/.. $<.PHONY: checkcheck: testall.out diff -c testall.exp testall.out || make -f Makefile.in messagemessage: @echo @echo If there are any differences, manually check whether @echo testall.out and testall.exp have the same lines but @echo only their order is different. If they have the same @echo lines but for the order, you have installed properly. @echo Otherwise, try to findout what might be the reason and @echo if you could not please email me with your problem at @echo gs4t@virginia.edu @echotestall.out: $(TESTS) ./testall > testall.out$(TESTS): $(TESTOBJS) $(CXX) $(CXXFLAGS) -o $@ $@.o $(LIBS)update-version: for i in $(TESTSRCS); \ do \ sed -e "s/Version: [0-9a-zA-Z]* [0-9.]*/Version: `date +%d%h%y` $(VERSION)/g" $$i > TMP$$i; \ mv TMP$$i $$i; \ doneclean: -rm -f *~ *.o core $(TESTS)distclean: clean -rm -f Makefiledistcopy: mkdir -p ../socket++-$(VERSION)/test for f in $(TESTSRCS) Makefile.in testall.exp; \ do \ (cd ../socket++-$(VERSION)/test; ln -s ../../test/$$f $$f) \ donedepend: makedepend $(CXXINCLUDES) $(TESTSRCS)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -