You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kdpkg/kdpkg/Makefile.am

27 lines
642 B

# set the include path for X, qt and KDE
AM_CPPFLAGS = $(all_includes)
# these are the headers for your project
noinst_HEADERS = kdpkg.h
# let automoc handle all of the meta source files (moc)
METASOURCES = AUTO
# the application source, library search path, and link libraries
kdpkg_SOURCES = main.cpp kdpkg.cpp kdpkgdialog.ui process.cpp
kdpkg_LDFLAGS = $(KDE_RPATH) $(all_libraries)
kdpkg_LDADD = $(LIB_KDEUI)
# application
xdg_apps_DATA = kdpkg.desktop
bin_PROGRAMS = kdpkg
sharedir = $(pkgdatadir)
# translation
messages: rc.cpp
$(EXTRACTRC) `find . -name \*.ui -o -name \*.rc` > rc.cpp
$(XGETTEXT) *.cpp -o $(podir)/kdpkg.pot