summaryrefslogtreecommitdiff
path: root/core/apps/embeddedkonsole/Makefile.in
Side-by-side diff
Diffstat (limited to 'core/apps/embeddedkonsole/Makefile.in') (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/embeddedkonsole/Makefile.in388
1 files changed, 0 insertions, 388 deletions
diff --git a/core/apps/embeddedkonsole/Makefile.in b/core/apps/embeddedkonsole/Makefile.in
deleted file mode 100644
index 44310a6..0000000
--- a/core/apps/embeddedkonsole/Makefile.in
+++ b/dev/null
@@ -1,388 +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 = embeddedkonsole
-TARGET1 = lib$(TARGET).so.$(VER_MAJ)
-
-####### Files
-
-HEADERS = TEWidget.h \
- TEScreen.h \
- TECommon.h \
- TEHistory.h \
- TEmulation.h \
- TEmuVt102.h \
- session.h \
- keytrans.h \
- konsole.h \
- commandeditdialog.h \
- commandeditwidget.h \
- playlistselection.h \
- MyPty.h
-SOURCES = TEScreen.cpp \
- TEWidget.cpp \
- TEHistory.cpp \
- TEmulation.cpp \
- TEmuVt102.cpp \
- session.cpp \
- keytrans.cpp \
- konsole.cpp \
- commandeditdialog.cpp \
- commandeditwidget.cpp \
- playlistselection.cpp \
- MyPty.cpp \
- main.cpp
-OBJECTS = TEScreen.o \
- TEWidget.o \
- TEHistory.o \
- TEmulation.o \
- TEmuVt102.o \
- session.o \
- keytrans.o \
- konsole.o \
- commandeditdialog.o \
- commandeditwidget.o \
- playlistselection.o \
- MyPty.o \
- main.o \
- commandeditdialogbase.o \
- smallcommandeditdialogbase.o
-INTERFACES = commandeditdialogbase.ui \
- smallcommandeditdialogbase.ui
-UICDECLS = commandeditdialogbase.h \
- smallcommandeditdialogbase.h
-UICIMPLS = commandeditdialogbase.cpp \
- smallcommandeditdialogbase.cpp
-SRCMOC = moc_TEWidget.cpp \
- moc_TEmulation.cpp \
- moc_TEmuVt102.cpp \
- moc_session.cpp \
- moc_konsole.cpp \
- moc_commandeditdialog.cpp \
- moc_commandeditwidget.cpp \
- moc_playlistselection.cpp \
- moc_MyPty.cpp \
- moc_commandeditdialogbase.cpp \
- moc_smallcommandeditdialogbase.cpp
-OBJMOC = moc_TEWidget.o \
- moc_TEmulation.o \
- moc_TEmuVt102.o \
- moc_session.o \
- moc_konsole.o \
- moc_commandeditdialog.o \
- moc_commandeditwidget.o \
- moc_playlistselection.o \
- moc_MyPty.o \
- moc_commandeditdialogbase.o \
- moc_smallcommandeditdialogbase.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 embeddedkonsole.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=embeddedkonsole
-
-####### Sub-libraries
-
-
-###### Combined headers
-
-
-
-####### Compile
-
-TEScreen.o: TEScreen.cpp \
- TEScreen.h \
- TECommon.h \
- TEHistory.h
-
-TEWidget.o: TEWidget.cpp \
- TEWidget.h \
- TECommon.h \
- session.h \
- MyPty.h \
- TEmuVt102.h \
- TEScreen.h \
- TEHistory.h \
- TEmulation.h \
- keytrans.h \
- $(OPIEDIR)/include/qpe/config.h
-
-TEHistory.o: TEHistory.cpp \
- TEHistory.h \
- TECommon.h
-
-TEmulation.o: TEmulation.cpp \
- TEmulation.h \
- TEWidget.h \
- TECommon.h \
- TEScreen.h \
- TEHistory.h \
- keytrans.h
-
-TEmuVt102.o: TEmuVt102.cpp \
- TEmuVt102.h \
- TEWidget.h \
- TECommon.h \
- TEScreen.h \
- TEHistory.h \
- TEmulation.h \
- keytrans.h
-
-session.o: session.cpp \
- session.h \
- MyPty.h \
- TEWidget.h \
- TECommon.h \
- TEmuVt102.h \
- TEScreen.h \
- TEHistory.h \
- TEmulation.h \
- keytrans.h
-
-keytrans.o: keytrans.cpp \
- keytrans.h \
- $(OPIEDIR)/include/qpe/qpeapplication.h \
- default.keytab.h
-
-konsole.o: konsole.cpp \
- $(OPIEDIR)/include/qpe/resource.h \
- $(OPIEDIR)/include/qpe/qpetoolbar.h \
- $(OPIEDIR)/include/qpe/qpemenubar.h \
- $(OPIEDIR)/include/qpe/config.h \
- konsole.h \
- MyPty.h \
- TEWidget.h \
- TECommon.h \
- TEmuVt102.h \
- TEScreen.h \
- TEHistory.h \
- TEmulation.h \
- keytrans.h \
- session.h \
- commandeditdialog.h \
- commandeditdialogbase.h
-
-commandeditdialog.o: commandeditdialog.cpp \
- commandeditdialog.h \
- commandeditdialogbase.h \
- playlistselection.h \
- $(OPIEDIR)/include/qpe/applnk.h \
- $(OPIEDIR)/include/qpe/config.h \
- $(OPIEDIR)/include/qpe/qpetoolbar.h \
- $(OPIEDIR)/include/qpe/qpemenubar.h \
- $(OPIEDIR)/include/qpe/resource.h \
- smallcommandeditdialogbase.h
-
-commandeditwidget.o: commandeditwidget.cpp \
- commandeditwidget.h \
- playlistselection.h \
- $(OPIEDIR)/include/qpe/applnk.h
-
-playlistselection.o: playlistselection.cpp \
- $(OPIEDIR)/include/qpe/applnk.h \
- $(OPIEDIR)/include/qpe/resource.h \
- playlistselection.h
-
-MyPty.o: MyPty.cpp \
- MyPty.h
-
-main.o: main.cpp \
- konsole.h \
- $(OPIEDIR)/include/qpe/qpetoolbar.h \
- MyPty.h \
- TEWidget.h \
- TECommon.h \
- TEmuVt102.h \
- TEScreen.h \
- TEHistory.h \
- TEmulation.h \
- keytrans.h \
- session.h \
- $(OPIEDIR)/include/qpe/qpeapplication.h
-
-commandeditdialogbase.h: commandeditdialogbase.ui
- $(UIC) commandeditdialogbase.ui -o $(INTERFACE_DECL_PATH)/commandeditdialogbase.h
-
-commandeditdialogbase.cpp: commandeditdialogbase.ui
- $(UIC) commandeditdialogbase.ui -i commandeditdialogbase.h -o commandeditdialogbase.cpp
-
-smallcommandeditdialogbase.h: smallcommandeditdialogbase.ui
- $(UIC) smallcommandeditdialogbase.ui -o $(INTERFACE_DECL_PATH)/smallcommandeditdialogbase.h
-
-smallcommandeditdialogbase.cpp: smallcommandeditdialogbase.ui
- $(UIC) smallcommandeditdialogbase.ui -i smallcommandeditdialogbase.h -o smallcommandeditdialogbase.cpp
-
-commandeditdialogbase.o: commandeditdialogbase.cpp \
- commandeditdialogbase.h \
- playlistselection.h \
- $(OPIEDIR)/include/qpe/applnk.h
-
-smallcommandeditdialogbase.o: smallcommandeditdialogbase.cpp \
- smallcommandeditdialogbase.h
-
-moc_TEWidget.o: moc_TEWidget.cpp \
- TEWidget.h \
- TECommon.h
-
-moc_TEmulation.o: moc_TEmulation.cpp \
- TEmulation.h \
- TEWidget.h \
- TECommon.h \
- TEScreen.h \
- TEHistory.h \
- keytrans.h
-
-moc_TEmuVt102.o: moc_TEmuVt102.cpp \
- TEmuVt102.h \
- TEWidget.h \
- TECommon.h \
- TEScreen.h \
- TEHistory.h \
- TEmulation.h \
- keytrans.h
-
-moc_session.o: moc_session.cpp \
- session.h \
- MyPty.h \
- TEWidget.h \
- TECommon.h \
- TEmuVt102.h \
- TEScreen.h \
- TEHistory.h \
- TEmulation.h \
- keytrans.h
-
-moc_konsole.o: moc_konsole.cpp \
- konsole.h \
- $(OPIEDIR)/include/qpe/qpetoolbar.h \
- MyPty.h \
- TEWidget.h \
- TECommon.h \
- TEmuVt102.h \
- TEScreen.h \
- TEHistory.h \
- TEmulation.h \
- keytrans.h \
- session.h
-
-moc_commandeditdialog.o: moc_commandeditdialog.cpp \
- commandeditdialog.h \
- commandeditdialogbase.h
-
-moc_commandeditwidget.o: moc_commandeditwidget.cpp \
- commandeditwidget.h
-
-moc_playlistselection.o: moc_playlistselection.cpp \
- playlistselection.h \
- $(OPIEDIR)/include/qpe/applnk.h
-
-moc_MyPty.o: moc_MyPty.cpp \
- MyPty.h
-
-moc_commandeditdialogbase.o: moc_commandeditdialogbase.cpp \
- commandeditdialogbase.h
-
-moc_smallcommandeditdialogbase.o: moc_smallcommandeditdialogbase.cpp \
- smallcommandeditdialogbase.h
-
-moc_TEWidget.cpp: TEWidget.h
- $(MOC) TEWidget.h -o moc_TEWidget.cpp
-
-moc_TEmulation.cpp: TEmulation.h
- $(MOC) TEmulation.h -o moc_TEmulation.cpp
-
-moc_TEmuVt102.cpp: TEmuVt102.h
- $(MOC) TEmuVt102.h -o moc_TEmuVt102.cpp
-
-moc_session.cpp: session.h
- $(MOC) session.h -o moc_session.cpp
-
-moc_konsole.cpp: konsole.h
- $(MOC) konsole.h -o moc_konsole.cpp
-
-moc_commandeditdialog.cpp: commandeditdialog.h
- $(MOC) commandeditdialog.h -o moc_commandeditdialog.cpp
-
-moc_commandeditwidget.cpp: commandeditwidget.h
- $(MOC) commandeditwidget.h -o moc_commandeditwidget.cpp
-
-moc_playlistselection.cpp: playlistselection.h
- $(MOC) playlistselection.h -o moc_playlistselection.cpp
-
-moc_MyPty.cpp: MyPty.h
- $(MOC) MyPty.h -o moc_MyPty.cpp
-
-moc_commandeditdialogbase.cpp: commandeditdialogbase.h
- $(MOC) commandeditdialogbase.h -o moc_commandeditdialogbase.cpp
-
-moc_smallcommandeditdialogbase.cpp: smallcommandeditdialogbase.h
- $(MOC) smallcommandeditdialogbase.h -o moc_smallcommandeditdialogbase.cpp
-
-