author | mark <mark> | 2002-02-18 17:25:37 (UTC) |
---|---|---|
committer | mark <mark> | 2002-02-18 17:25:37 (UTC) |
commit | 4e553417909be0ddec9e8c35ecb312c9c5ddc0df (patch) (side-by-side diff) | |
tree | dd1988fd56e53613a621982ba9e819b695679cf4 | |
parent | 0dd511276a499a83699a3d17ddb074eab7e7e4ca (diff) | |
download | opie-4e553417909be0ddec9e8c35ecb312c9c5ddc0df.zip opie-4e553417909be0ddec9e8c35ecb312c9c5ddc0df.tar.gz opie-4e553417909be0ddec9e8c35ecb312c9c5ddc0df.tar.bz2 |
Fix
-rw-r--r-- | core/pim/today/Makefile.in | 47 |
1 files changed, 23 insertions, 24 deletions
diff --git a/core/pim/today/Makefile.in b/core/pim/today/Makefile.in index 85f162a..65243f2 100644 --- a/core/pim/today/Makefile.in +++ b/core/pim/today/Makefile.in @@ -71,28 +71,26 @@ OBJMOC = moc_today.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: Makefile.in - -Makefile.in: today.pro - tmake today.pro -o Makefile.in +tmake: + tmake today.pro clean: -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(UICIMPLS) $(UICDECLS) -rm -f *~ core -rm -f allmoc.cpp ####### Extension Modules listpromodules: @echo listallmodules: @@ -110,69 +108,70 @@ REQUIRES= ####### Sub-libraries ###### Combined headers ####### Compile main.o: main.cpp \ today.h \ todaybase.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/datebookdb.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/event.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/palmtoprecord.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/timeconversion.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/qpcglobal.h \ + $(OPIEDIR)/include/qpe/datebookdb.h \ + $(OPIEDIR)/include/qpe/event.h \ + $(OPIEDIR)/include/qpe/palmtoprecord.h \ + $(OPIEDIR)/include/qpe/timeconversion.h \ + $(OPIEDIR)/include/qpe/qpcglobal.h \ TodoItem.h \ todayconfig.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/qpeapplication.h + $(OPIEDIR)/include/qpe/qpeapplication.h today.o: today.cpp \ today.h \ todaybase.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/datebookdb.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/event.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/palmtoprecord.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/timeconversion.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/qpcglobal.h \ + $(OPIEDIR)/include/qpe/datebookdb.h \ + $(OPIEDIR)/include/qpe/event.h \ + $(OPIEDIR)/include/qpe/palmtoprecord.h \ + $(OPIEDIR)/include/qpe/timeconversion.h \ + $(OPIEDIR)/include/qpe/qpcglobal.h \ TodoItem.h \ todayconfig.h \ minidom.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/timestring.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/config.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/qprocess.h + $(OPIEDIR)/include/qpe/timestring.h \ + $(OPIEDIR)/include/qpe/config.h \ + $(OPIEDIR)/include/qpe/qcopenvelope_qws.h \ + $(OPIEDIR)/include/qpe/qprocess.h todaybase.o: todaybase.cpp \ todaybase.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/resource.h + $(OPIEDIR)/include/qpe/resource.h todayconfig.o: todayconfig.cpp \ todayconfig.h minidom.o: minidom.c \ minidom.h TodoItem.o: TodoItem.cpp \ TodoItem.h moc_today.o: moc_today.cpp \ today.h \ todaybase.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/datebookdb.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/event.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/palmtoprecord.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/timeconversion.h \ - /home/kergoth/buildsystem/buildroot-oz/build/opie/include/qpe/qpcglobal.h \ + $(OPIEDIR)/include/qpe/datebookdb.h \ + $(OPIEDIR)/include/qpe/event.h \ + $(OPIEDIR)/include/qpe/palmtoprecord.h \ + $(OPIEDIR)/include/qpe/timeconversion.h \ + $(OPIEDIR)/include/qpe/qpcglobal.h \ TodoItem.h \ todayconfig.h moc_todaybase.o: moc_todaybase.cpp \ todaybase.h moc_todayconfig.o: moc_todayconfig.cpp \ todayconfig.h moc_today.cpp: today.h $(MOC) today.h -o moc_today.cpp |