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.
35 lines
1.4 KiB
35 lines
1.4 KiB
# set the include path for X, qt and KDE
|
|
INCLUDES = $(all_includes) -I../kmfwidgets -I../core
|
|
|
|
METASOURCES = AUTO
|
|
#########################################################################
|
|
# KPART SECTION
|
|
#########################################################################
|
|
|
|
|
|
# this is where the desktop file will go
|
|
partdesktopdir = $(kde_servicesdir)
|
|
partdesktop_DATA = kmfipteditorpart.desktop
|
|
|
|
# this is where the part's XML-GUI resource file goes
|
|
partrcdir = $(kde_datadir)/kmfipteditorpart
|
|
partrc_DATA = kmfipteditorpartui.rc
|
|
kde_module_LTLIBRARIES = libkmfipteditorpart.la
|
|
|
|
libkmfipteditorpart_la_SOURCES = kmfchainedit.cpp kmfnewchaindlg.cpp kmfruleedit.cpp kmfipteditorpart.cpp kmyfirewallchaineditor.ui kmyfirewallchaineditornewchain.ui kmyfirewallruleeditor.ui
|
|
|
|
noinst_HEADERS = kmfchainedit.h kmfnewchaindlg.h kmfruleedit.h kmfipteditorpart.h
|
|
|
|
libkmfipteditorpart_la_LDFLAGS = -module -no-undefined $(all_libraries) \
|
|
$(KDE_PLUGIN) $(LIB_QT) $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_KIO)
|
|
libkmfipteditorpart_la_LIBADD = \
|
|
$(LIB_KPARTS) ../kmfwidgets/libkmfwidgets.la ../core/libkmfcore.la
|
|
|
|
install-data-local:
|
|
$(mkinstalldirs) $(DESTDIR)$(kde_datadir)/kmyfirewall/ruleoptions/
|
|
$(INSTALL_DATA) $(srcdir)/kmfruleoption_frag_option.xml $(DESTDIR)$(kde_datadir)/kmyfirewall/ruleoptions/kmfruleoption_frag_option.xml
|
|
|
|
uninstall-local:
|
|
-rm -f $(DESTDIR)$(kde_datadir)/kmyfirewall/ruleoptions/kmfruleoption_frag_option.xml
|
|
|