diff options
author | gregory guy <gregory-tde@laposte.net> | 2019-11-28 22:33:34 +0100 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2019-11-30 00:21:29 +0900 |
commit | c1d255c4fceea80dc0e96fba3221bd877a05c482 (patch) | |
tree | 8ad2380dc052f2dbc97ca1fb033c88fbfc1bb00c /src | |
parent | 3e9635773637a28ad4df02288b21450d7d42f869 (diff) | |
download | knmap-c1d255c4fceea80dc0e96fba3221bd877a05c482.tar.gz knmap-c1d255c4fceea80dc0e96fba3221bd877a05c482.zip |
Drop automake build support.
Add basic cmake build instructions.
Remove empty files: NEWS and TODO.
Rework of the README, INSTALL and help page.
Signed-off-by: gregory guy <gregory-tde@laposte.net>
(cherry picked from commit 7f0fd2e067a983c24bc60bc2b99f926d77a7830c)
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/src/Makefile.am b/src/Makefile.am deleted file mode 100644 index 329ca1c..0000000 --- a/src/Makefile.am +++ /dev/null @@ -1,46 +0,0 @@ -# set the include path for X, qt and TDE -INCLUDES = $(all_includes) - -# these are the headers for your project -noinst_HEADERS = knmap.h global.h mainwidget.h outputwidget.h commonwidget.h \ - timingwidget.h compoundwidget.h htmlwidget.h stylesheetdialog.h profiledialog.h \ - loggingoptions.h simpleoptions.h pandsoptions.h whatsthis.h tabwidgetptrlist.h \ - tabwidgetdata.h scanwidget.h indexwidget.h scannamedialog.h scanstack.h scanmonitor.h \ - scanmonitorevent.h nmapoutputbuffer.h - -# let automoc handle all of the meta source files (moc) -METASOURCES = AUTO - -messages: rc.cpp - $(EXTRACTRC) `find . -name \*.ui -o -name \*.rc` > rc.cpp - $(XGETTEXT) *.cpp -o $(podir)/knmap.pot - -KDE_ICON = AUTO - -######################################################################### -# APPLICATION SECTION -######################################################################### -# this is the program that gets installed. it's name is used for all -# of the other Makefile.am variables -bin_PROGRAMS = knmap - -# the application source, library search path, and link libraries -knmap_SOURCES = main.cpp knmap.cpp mainwidget.cpp outputwidget.cpp \ - commonwidget.cpp timingwidget.cpp compoundwidget.cpp htmlwidget.cpp stylesheetdialog.cpp \ - profiledialog.cpp loggingoptions.cpp simpleoptions.cpp pandsoptions.cpp whatsthis.cpp \ - tabwidgetptrlist.cpp tabwidgetdata.cpp scanwidget.cpp indexwidget.cpp scannamedialog.cpp \ - scanstack.cpp scanmonitor.cpp scanmonitorevent.cpp nmapoutputbuffer.cpp -knmap_LDFLAGS = $(TDE_RPATH) $(all_libraries) -knmap_LDADD = $(LIB_TDEIO) $(LIB_TDEHTML) $(LIB_TDEUI) $(LIB_TDECORE) $(LIB_QT) - -# this is where the desktop file will go -shelldesktopdir = $(kde_appsdir)/Internet -shelldesktop_DATA = knmap.desktop - -# this is where the shell's XML-GUI resource file goes -shellrcdir = $(kde_datadir)/knmap -shellrc_DATA = knmapui.rc nmap_manpage.html nmap_manpage.html.diff - -kde_icon_TDEICON = hi16-app-scanclose.png hi32-app-scanclose.png \ - hi16-app-scannew.png hi32-app-scannew.png hi16-app-scanrename.png hi32-app-scanrename.png \ - hi16-app-scanduplicate.png hi32-app-scanduplicate.png hi16-app-manpage.png hi32-app-manpage.png |