diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-08-28 21:57:16 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-08-28 22:16:14 +0900 |
commit | 6493cf19d99f6b955982aa0488610feb77a8aad0 (patch) | |
tree | 49c966b2503e36207150203508fbef619afc8a61 /src | |
parent | 07be9f46cf16814185ccfb2435a0654cd2c55580 (diff) | |
download | tdepowersave-6493cf19d99f6b955982aa0488610feb77a8aad0.tar.gz tdepowersave-6493cf19d99f6b955982aa0488610feb77a8aad0.zip |
Drop automake build support.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 795bcd2584759310a0fe512bff3c90841a47a5e4)
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 102 | ||||
-rw-r--r-- | src/configure.in.in | 9 | ||||
-rw-r--r-- | src/pics/Makefile.am | 3 |
3 files changed, 0 insertions, 114 deletions
diff --git a/src/Makefile.am b/src/Makefile.am deleted file mode 100644 index 9c7b044..0000000 --- a/src/Makefile.am +++ /dev/null @@ -1,102 +0,0 @@ -# set the include path for X, qt and KDE -INCLUDES = \ - -DPACKAGE_KDE_SOUND_DIR=\""$(prefix)/share/sounds/"\" \ - $(all_includes) \ - @PACKAGE_CFLAGS@ - -# these are the headers for your project -noinst_HEADERS = \ - autodimm.h \ - autosuspend.h \ - blacklisteditdialog.h \ - configuredialog.h \ - countdowndialog.h \ - dbusInterface.h \ - detaileddialog.h \ - hardware.h \ - hardware_battery.h \ - hardware_batteryCollection.h \ - hardware_cpu.h \ - inactivity.h \ - infodialog.h \ - tdepowersave.h \ - logviewer.h \ - screen.h \ - settings.h \ - suspenddialog.h - - -# let automoc handle all of the meta source files (moc) -METASOURCES = AUTO - -KDE_ICON = tdepowersave - -######################################################################### -# APPLICATION SECTION -######################################################################### -# this is the program that gets installed. it's name is used for all -# of the other Makefile.am variables - -bin_PROGRAMS = -lib_LTLIBRARIES = -tdeinit_LTLIBRARIES = tdepowersave.la - -# the application source, library search path, and link libraries -tdepowersave_la_SOURCES = \ - dummy.cpp \ - autodimm.cpp \ - autosuspend.cpp \ - blacklistedit_Dialog.ui \ - blacklisteditdialog.cpp \ - configure_Dialog.ui \ - configuredialog.cpp \ - countdown_Dialog.ui \ - countdowndialog.cpp \ - dbusInterface.cpp \ - detailed_Dialog.ui \ - detaileddialog.cpp \ - hardware.cpp \ - hardware_battery.cpp \ - hardware_batteryCollection.cpp \ - hardware_cpu.cpp \ - inactivity.cpp \ - info_Dialog.ui \ - infodialog.cpp \ - tdepowersave.cpp \ - tdepowersave.skel \ - log_viewer.ui \ - logviewer.cpp \ - main.cpp \ - screen.cpp \ - settings.cpp \ - suspenddialog.cpp \ - suspend_Dialog.ui - - -tdepowersave_la_LDFLAGS = $(KDE_RPATH) $(all_libraries) -module -avoid-version -tdepowersave_la_LIBADD = $(LIB_TDEIO) @PACKAGE_LIBS@ -ldbus-tqt-1 -lXss -lXext -lXtst - -# this is where the desktop file will go -xdg_apps_DATA = tdepowersave.desktop - -# and for autostart -autostartdir = $(prefix)/share/autostart -autostart_DATA = tdepowersave-autostart.desktop - -# this is where the shell's XML-GUI resource file goes -shellrcdir = $(kde_datadir)/tdepowersave -shellrc_DATA = eventsrc -# shellrc_DATA = tdepowersaveui.rc - -# pics subdir -SUBDIRS = pics -messages: - $(EXTRACTRC) *ui eventsrc >> rc.cpp - $(XGETTEXT) `find . -name \*.h -o -name \*.H -o -name \*.cpp -o -name \*.C` -o $(podir)/tdepowersave.pot - rm -f rc.cpp - -install-data-local: - $(mkinstalldirs) $(DESTDIR)$(kde_confdir) - $(INSTALL_DATA) $(top_srcdir)/src/config/tdepowersaverc_default $(DESTDIR)$(kde_confdir)/tdepowersaverc - - diff --git a/src/configure.in.in b/src/configure.in.in deleted file mode 100644 index dfcd1b3..0000000 --- a/src/configure.in.in +++ /dev/null @@ -1,9 +0,0 @@ -#MIN_CONFIG(3.0.0) - -AM_INIT_AUTOMAKE(tdepowersave, 0.1) -AC_C_BIGENDIAN -AC_CHECK_KDEMAXPATHLEN - -AC_PATH_QT -# AC_PATH_QT_TQMOC_UIC - diff --git a/src/pics/Makefile.am b/src/pics/Makefile.am deleted file mode 100644 index 213fe82..0000000 --- a/src/pics/Makefile.am +++ /dev/null @@ -1,3 +0,0 @@ -tdepowersaveiconsdir = $(kde_datadir)/tdepowersave/icons -tdepowersaveicons_ICON = AUTO - |