📄 makefile
字号:
############################################################################## Makefile for building helloword# Generated by tmake at 01:16, 2006/08/14# Project: helloword# Template: app#################################################################################### Compiler, tools and optionsCC = /opt/host/armv4l/bin/armv4l-unknown-linux-gccCXX = /opt/host/armv4l/bin/armv4l-unknown-linux-g++CFLAGS = -pipe -Wall -W -O2 -DNO_DEBUGCXXFLAGS= -pipe -DQWS -fno-exceptions -fno-rtti -Wall -W -O2 -DNO_DEBUGINCPATH = -I$(QTDIR)/includeLINK = /opt/host/armv4l/bin/armv4l-unknown-linux-g++LFLAGS = LIBS = $(SUBLIBS) -L$(QTDIR)/lib -lqte -lts -lmMOC = $(QTDIR)/bin/mocTAR = tar -cfGZIP = gzip -9f####### FilesHEADERS = SOURCES = helloword.cppOBJECTS = helloword.oSRCMOC = OBJMOC = DIST = TARGET = helloword####### 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): $(OBJECTS) $(OBJMOC) $(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS)moc: $(SRCMOC)tmake: MakefileMakefile: helloword.pro tmake helloword.pro -o Makefiledist: $(TAR) helloword.tar helloword.pro $(SOURCES) $(HEADERS) $(DIST) $(GZIP) helloword.tarclean: -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(TARGET) -rm -f *~ core####### Compilehelloword.o: helloword.cpp
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -