⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 Webserver的移植与网络通讯实验 既在嵌入式设备上运行一个脚本或CGI的功能的WEB服务器.生成一个动态的叶面
💻
字号:
############################################################################## Makefile for building client# Generated by tmake at 15:50, 2006/07/05#     Project: client#    Template: app#################################################################################### Compiler, tools and optionsCC	=	arm-linux-gccCXX	=	arm-linux-g++CFLAGS	=	-pipe -Wall -W -O2 -DNO_DEBUGCXXFLAGS=	-pipe -DQWS -fno-exceptions -fno-rtti -Wall -W -O2 -DNO_DEBUGINCPATH	=	-I/usr/include -I$(QTDIR)/include -I$(QPEDIR)/includeLINK	=	arm-linux-gccLFLAGS	=	LIBS	=	$(SUBLIBS) -L$(QPEDIR)/lib -L$(QTDIR)/lib -lm -lts -lqpe -lqtopia -lqteMOC	=	$(QTDIR)/bin/mocUIC	=	$(QTDIR)/bin/uicTAR	=	tar -cfGZIP	=	gzip -9f####### FilesHEADERS =	clientform.h \		frmclient.hSOURCES =	main.cpp \		clientform.cpp \		frmclient.cppOBJECTS =	main.o \		clientform.o \		frmclient.oINTERFACES =	UICDECLS =	UICIMPLS =	SRCMOC	=	moc_clientform.cpp \		moc_frmclient.cppOBJMOC	=	moc_clientform.o \		moc_frmclient.oDIST	=	TARGET	=	clientINTERFACE_DECL_PATH = .####### Implicit rules.SUFFIXES: .cpp .cxx .cc .C .c.cpp.o:	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<.cxx.o:	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<.cc.o:	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<.C.o:	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<.c.o:	$(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<####### Build rulesall: $(TARGET)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) 	$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS)moc: $(SRCMOC)tmake: MakefileMakefile: client.pro	tmake client.pro -o Makefiledist:	$(TAR) client.tar client.pro $(SOURCES) $(HEADERS) $(INTERFACES) $(DIST)	$(GZIP) client.tarclean:	-rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS) $(TARGET)	-rm -f *~ core####### Sub-libraries###### Combined headers####### Compilemain.o: main.cpp \		frmclient.h \		clientform.hclientform.o: clientform.cpp \		clientform.hfrmclient.o: frmclient.cpp \		frmclient.h \		clientform.hmoc_clientform.o: moc_clientform.cpp \		clientform.hmoc_frmclient.o: moc_frmclient.cpp \		frmclient.h \		clientform.hmoc_clientform.cpp: clientform.h	$(MOC) clientform.h -o moc_clientform.cppmoc_frmclient.cpp: frmclient.h	$(MOC) frmclient.h -o moc_frmclient.cpp

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -