From b4d04f29978bbd01a499710860545b233362e748 Mon Sep 17 00:00:00 2001 From: zecke Date: Fri, 01 Mar 2002 18:29:41 +0000 Subject: remove all Makefile.in You need to set the TMAKEPATH now --- (limited to 'core/pim/todo/Makefile.in') diff --git a/core/pim/todo/Makefile.in b/core/pim/todo/Makefile.in deleted file mode 100644 index efe6a35..0000000 --- a/core/pim/todo/Makefile.in +++ b/dev/null @@ -1,203 +0,0 @@ -############################################################################# - -####### Compiler, tools and options - -CXX = $(SYSCONF_CXX) $(QT_CXX_MT) -CXXFLAGS= $(SYSCONF_CXXFLAGS_QT) $(SYSCONF_CXXFLAGS) -CC = $(SYSCONF_CC) $(QT_C_MT) -CFLAGS = $(SYSCONF_CFLAGS) -INCPATH = -I$(OPIEDIR)/include -LFLAGS = $(SYSCONF_LFLAGS_QT) $(SYSCONF_RPATH_QT) $(SYSCONF_LFLAGS) $(QT_LFLAGS_MT) -LIBS = $(SUBLIBS) -lqpe $(SYSCONF_LIBS_QT) $(SYSCONF_LIBS) $(SYSCONF_LIBS_QTAPP) -MOC = $(SYSCONF_MOC) -UIC = $(SYSCONF_UIC) - -####### Target - -DESTDIR = $(OPIEDIR)/bin/ -VER_MAJ = 1 -VER_MIN = 0 -VER_PATCH = 0 -TARGET = todolist -TARGET1 = lib$(TARGET).so.$(VER_MAJ) - -####### Files - -HEADERS = mainwindow.h \ - todotable.h \ - todoentryimpl.h -SOURCES = main.cpp \ - mainwindow.cpp \ - todotable.cpp \ - todoentryimpl.cpp -OBJECTS = main.o \ - mainwindow.o \ - todotable.o \ - todoentryimpl.o \ - todoentry.o -INTERFACES = todoentry.ui -UICDECLS = todoentry.h -UICIMPLS = todoentry.cpp -SRCMOC = moc_mainwindow.cpp \ - moc_todotable.cpp \ - moc_todoentryimpl.cpp \ - moc_todoentry.cpp -OBJMOC = moc_mainwindow.o \ - moc_todotable.o \ - moc_todoentryimpl.o \ - moc_todoentry.o - - -####### 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 rules - - -all: $(DESTDIR)$(TARGET) - -$(DESTDIR)$(TARGET): $(UICDECLS) $(OBJECTS) $(OBJMOC) $(SUBLIBS) - $(SYSCONF_LINK) $(LFLAGS) -o $(DESTDIR)$(TARGET) $(OBJECTS) $(OBJMOC) $(LIBS) - -moc: $(SRCMOC) - -tmake: - tmake todo.pro - -clean: - -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS) - -rm -f *~ core - -rm -f allmoc.cpp - -####### Extension Modules - -listpromodules: - @echo - -listallmodules: - @echo - -listaddonpromodules: - @echo - -listaddonentmodules: - @echo - - -REQUIRES= - -####### Sub-libraries - - -###### Combined headers - - - -####### Compile - -main.o: main.cpp \ - mainwindow.h \ - $(OPIEDIR)/include/qpe/qpeapplication.h - -mainwindow.o: mainwindow.cpp \ - mainwindow.h \ - todoentryimpl.h \ - todoentry.h \ - $(OPIEDIR)/include/qpe/task.h \ - $(OPIEDIR)/include/qpe/palmtoprecord.h \ - $(OPIEDIR)/include/qpe/stringutil.h \ - todotable.h \ - $(OPIEDIR)/include/qpe/categories.h \ - $(OPIEDIR)/include/qpe/qpeapplication.h \ - $(OPIEDIR)/include/qpe/config.h \ - $(OPIEDIR)/include/qpe/finddialog.h \ - $(OPIEDIR)/include/qpe/global.h \ - $(OPIEDIR)/include/qpe/ir.h \ - $(OPIEDIR)/include/qpe/qpemenubar.h \ - $(OPIEDIR)/include/qpe/qpemessagebox.h \ - $(OPIEDIR)/include/qpe/resource.h \ - $(OPIEDIR)/include/qpe/qpetoolbar.h - -todotable.o: todotable.cpp \ - todotable.h \ - $(OPIEDIR)/include/qpe/categories.h \ - $(OPIEDIR)/include/qpe/stringutil.h \ - $(OPIEDIR)/include/qpe/task.h \ - $(OPIEDIR)/include/qpe/palmtoprecord.h \ - $(OPIEDIR)/include/qpe/categoryselect.h \ - $(OPIEDIR)/include/qpe/xmlreader.h - -todoentryimpl.o: todoentryimpl.cpp \ - todoentryimpl.h \ - todoentry.h \ - $(OPIEDIR)/include/qpe/task.h \ - $(OPIEDIR)/include/qpe/palmtoprecord.h \ - $(OPIEDIR)/include/qpe/stringutil.h \ - $(OPIEDIR)/include/qpe/categoryselect.h \ - $(OPIEDIR)/include/qpe/datebookmonth.h \ - $(OPIEDIR)/include/qpe/event.h \ - $(OPIEDIR)/include/qpe/timeconversion.h \ - $(OPIEDIR)/include/qpe/qpcglobal.h \ - $(OPIEDIR)/include/qpe/global.h \ - $(OPIEDIR)/include/qpe/imageedit.h \ - $(OPIEDIR)/include/qpe/timestring.h - -todoentry.h: todoentry.ui - $(UIC) todoentry.ui -o $(INTERFACE_DECL_PATH)/todoentry.h - -todoentry.cpp: todoentry.ui - $(UIC) todoentry.ui -i todoentry.h -o todoentry.cpp - -todoentry.o: todoentry.cpp \ - todoentry.h \ - todoentry.ui - -moc_mainwindow.o: moc_mainwindow.cpp \ - mainwindow.h - -moc_todotable.o: moc_todotable.cpp \ - todotable.h \ - $(OPIEDIR)/include/qpe/categories.h \ - $(OPIEDIR)/include/qpe/stringutil.h \ - $(OPIEDIR)/include/qpe/task.h \ - $(OPIEDIR)/include/qpe/palmtoprecord.h - -moc_todoentryimpl.o: moc_todoentryimpl.cpp \ - todoentryimpl.h \ - todoentry.h \ - $(OPIEDIR)/include/qpe/task.h \ - $(OPIEDIR)/include/qpe/palmtoprecord.h \ - $(OPIEDIR)/include/qpe/stringutil.h - -moc_todoentry.o: moc_todoentry.cpp \ - todoentry.h - -moc_mainwindow.cpp: mainwindow.h - $(MOC) mainwindow.h -o moc_mainwindow.cpp - -moc_todotable.cpp: todotable.h - $(MOC) todotable.h -o moc_todotable.cpp - -moc_todoentryimpl.cpp: todoentryimpl.h - $(MOC) todoentryimpl.h -o moc_todoentryimpl.cpp - -moc_todoentry.cpp: todoentry.h - $(MOC) todoentry.h -o moc_todoentry.cpp - - -- cgit v0.9.0.2