diff options
author | gregory guy <[email protected]> | 2020-01-14 13:48:58 +0100 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-01-26 00:51:05 +0900 |
commit | dd79cfcd646b638b99ef1e6e3c833c4976fc95e0 (patch) | |
tree | 1edc1fdec78ea78edd83ba46540cbbfd04159256 /src/Makefile.am | |
parent | e010bf5ccc2b72ca8d59e4481ff6e40579f5adf5 (diff) | |
download | ksensors-dd79cfcd646b638b99ef1e6e3c833c4976fc95e0.tar.gz ksensors-dd79cfcd646b638b99ef1e6e3c833c4976fc95e0.zip |
Drop automake build support.
Add basic cmake build instructions.
Delete LEEME, LIESMICH and LISEZMOI files.
Delete empty file NEWS.
Rework of the FAQ, INSTALL and README files.
Add detection for the lm-sensors and math libc libraries.
Move the ksensors.desktop file into XDG_APPS_INSTALL_DIR directory,
see TDE/tde#26 and bug 2408.
Add French description and comments in the ksensors.desktop file.
Some cosmetics here and there.
Signed-off-by: gregory guy <[email protected]>
(cherry picked from commit e383a9d6aecec8ed53d1a0f3ce804f1ce550476f)
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/src/Makefile.am b/src/Makefile.am deleted file mode 100644 index 7c17c10..0000000 --- a/src/Makefile.am +++ /dev/null @@ -1,61 +0,0 @@ -# set the include path for X, qt and TDE -INCLUDES = $(all_includes) - -# these are the headers for your project -noinst_HEADERS = ksensors.h aboutcfgdesign.h \ - cpupanel.h cputimepanel.h generalcfgdesign.h generalcfg.h \ - hdsensorslist.h i8ksensorslist.h infopanels.h ksensorscfg.h \ - ksensors.h ksensorssplash.h lmsensordockpanel.h lmsensor.h \ - lmsensorpanel.h lmsensorsalarms.h lmsensorscfgdesign.h \ - lmsensorscfg.h lmsensorschip.h lmsensorsdock.h lmsensors.h \ - lmsensorswidget.h palettecfgdesign.h palettecfg.h panel.h \ - panelsgroup.h processexec.h procinfo.h qbarmeter.h \ - qdialarc.h qlcddraw.h qlcdstring.h rampanel.h sensor.h \ - sensorslist.h systemcfgdesign.h systemcfg.h uptimepanel.h - -# let automoc handle all of the meta source files (moc) -METASOURCES = AUTO - -messages: rc.cpp - $(XGETTEXT) *.cpp -o $(podir)/ksensors.pot - - -######################################################################### -# APPLICATION SECTION -######################################################################### -# this is the program that gets installed. it's name is used for all -# of the other Makefile.am variables -bin_PROGRAMS = ksensors - -# the application source, library search path, and link libraries -ksensors_SOURCES = main.cpp ksensors.cpp aboutcfgdesign.ui \ - cpupanel.cpp cputimepanel.cpp generalcfg.cpp \ - generalcfgdesign.ui hdsensorslist.cpp i8ksensorslist.cpp \ - infopanels.cpp ksensorscfg.cpp \ - ksensorssplash.cpp lmsensor.cpp lmsensordockpanel.cpp \ - lmsensorpanel.cpp lmsensorsalarms.cpp lmsensorscfg.cpp \ - lmsensorscfgdesign.ui lmsensorschip.cpp lmsensors.cpp \ - lmsensorsdock.cpp lmsensorswidget.cpp palettecfg.cpp \ - palettecfgdesign.ui panel.cpp panelsgroup.cpp \ - processexec.cpp procinfo.cpp qbarmeter.cpp \ - qdialarc.cpp qlcdraw.cpp qlcdstring.cpp \ - rampanel.cpp sensor.cpp sensorslist.cpp \ - systemcfg.cpp systemcfgdesign.ui uptimepanel.cpp - -ksensors_LDFLAGS = $(TDE_RPATH) $(all_libraries) -ksensors_LDADD = $(LIB_TDEUI) $(LIB_TDECORE) $(LIB_QT) -lsensors -lm - -# this is where the desktop file will go -shelldesktopdir = $(kde_appsdir)/System -shelldesktop_DATA = ksensors.desktop - -# and for autostart -autostartdir = $(prefix)/share/autostart -autostart_DATA = ksensors.desktop - -# this is where the shell's XML-GUI resource file goes -shellrcdir = $(kde_datadir)/ksensors -shellrc_DATA = ksensorsui.rc - -SUBDIRS = pics sounds - |