diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 37333bf25ad9a4c538250f5af2f9f1d666362883 (patch) | |
tree | c45e8df5b9efbffe07eb3d9340df7811c7e16943 /kcron/Makefile.am | |
download | tdeadmin-37333bf25ad9a4c538250f5af2f9f1d666362883.tar.gz tdeadmin-37333bf25ad9a4c538250f5af2f9f1d666362883.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kcron/Makefile.am')
-rw-r--r-- | kcron/Makefile.am | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/kcron/Makefile.am b/kcron/Makefile.am new file mode 100644 index 0000000..1cd898d --- /dev/null +++ b/kcron/Makefile.am @@ -0,0 +1,111 @@ +########################################################################## +# Makefile.am # +# -------------------------------------------------------------------- # +# Makefile.am for KCron # +# -------------------------------------------------------------------- # +# Copyright (C) 1999, Gary Meyer <gary@meyer.net> # +# -------------------------------------------------------------------- # +# This program is free software; you can redistribute it and/or modify # +# it under the terms of the GNU General Public License as published by # +# the Free Software Foundation; either version 2 of the License, or # +# (at your option) any later version. # +########################################################################## + +bin_PROGRAMS = kcron + +kcron_SOURCES = \ + cthost.cpp \ + ctcron.cpp \ + ctmonth.cpp \ + ctdom.cpp \ + ctdow.cpp \ + cttask.cpp \ + ctvariable.cpp \ + kticon.cpp \ + ktapp.cpp \ + ktview.cpp \ + ktlistitem.cpp \ + ktlistcron.cpp \ + ktlisttask.cpp \ + ktlisttasks.cpp \ + ktlistvar.cpp \ + ktlistvars.cpp \ + kttask.cpp \ + ktvariable.cpp \ + ktprint.cpp \ + ktprintopt.cpp \ + main.cpp + +EXTRA_DIST = \ + ctcron.cpp \ + ctcron.h \ + ctdom.cpp \ + ctdom.h \ + ctdow.cpp \ + ctdow.h \ + ctexception.h \ + cthost.cpp \ + cthost.h \ + cthour.h \ + cti18n.h \ + ctminute.h \ + ctmonth.cpp \ + ctmonth.h \ + cttask.cpp \ + cttask.h \ + ctunit.cpp \ + ctunit.h \ + ctvariable.cpp \ + ctvariable.h \ + ktapp.h \ + ktapp.cpp \ + kticon.h \ + kticon.cpp \ + kttask.h \ + kttask.cpp \ + ktvariable.h \ + ktvariable.cpp \ + ktview.cpp \ + ktview.h \ + ktlistitem.h \ + ktlistitem.cpp \ + ktlistcron.h \ + ktlistcron.cpp \ + ktlisttask.h \ + ktlisttask.cpp \ + ktlisttasks.h \ + ktlisttasks.cpp \ + ktlistvar.h \ + ktlistvar.cpp \ + ktlistvars.h \ + ktlistvars.cpp \ + ktprint.h \ + ktprint.cpp \ + ktprintopt.h \ + ktprintopt.cpp \ + main.cpp \ + README \ + AUTHORS \ + COPYING \ + ChangeLog \ + TODO \ + kcron.desktop \ + kcron.lsm \ + Makefile.am + +INCLUDES= $(all_includes) + +kcron_METASOURCES = AUTO + +kcron_LDFLAGS = $(all_libraries) $(KDE_RPATH) + +messages: rc.cpp + $(XGETTEXT) *.cpp -o $(podir)/kcron.pot + +kcron_LDADD = $(LIB_KFILE) -lkdeprint + +xdg_apps_DATA = kcron.desktop + +KDE_ICON = kcron +shellrcdir = $(kde_datadir)/kcron +shellrc_DATA = kcronui.rc |