diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-02-24 18:11:58 +0100 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-02-24 18:11:58 +0100 |
| commit | 0535b83d1d7fa5c99c4cf2dfd075511b8a7dcb24 (patch) | |
| tree | d37a9b3206c433b491a3c68d933b9ddca3bc48d0 /src | |
| parent | f64d36e0f5034fcade99d89c0d09554204a14f86 (diff) | |
| download | abrt-0535b83d1d7fa5c99c4cf2dfd075511b8a7dcb24.tar.gz abrt-0535b83d1d7fa5c99c4cf2dfd075511b8a7dcb24.tar.xz abrt-0535b83d1d7fa5c99c4cf2dfd075511b8a7dcb24.zip | |
Added autotools scripts for gui.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Gui/Makefile.am | 29 | ||||
| -rw-r--r-- | src/Makefile.am | 2 |
2 files changed, 30 insertions, 1 deletions
diff --git a/src/Gui/Makefile.am b/src/Gui/Makefile.am new file mode 100644 index 0000000..020bb1f --- /dev/null +++ b/src/Gui/Makefile.am @@ -0,0 +1,29 @@ +#SUBDIRS=gui tui plugins tests conf + +#bin_SCRIPTS = mainwindow.py + +PYTHON_FILES = CCDBusBackend.py CCDumpList.py CCDump.py CC_gui_functions.py ccgui.glade CCReporterDialog.py + +GLADE_FILES = ccgui.glade + +EXTRA_DIST = $(PYTHON_FILES) $(GLADE_FILES) + +ccguidir = $(pkgdatadir) +ccgui_PYTHON = $(PYTHON_FILES) +ccgui_DATA = $(GLADE_FILES) + +execdir = $(sbindir) + +CLEANFILES := $(notdir $(wildcard *~)) $(notdir $(wildcard *\#)) $(notdir $(wildcard \.\#*)) $(notdir $(wildcard *.pyc)) + +check-local: + @for i in $(notdir $(wildcard *.py)); do echo $(PYTHON_FILES)|grep -q $$i || (echo $$i is missing;false) || exit 1;done && echo "Source file check PASSED" +install-exec-local: + mkdir -p $(DESTDIR)$(pkgdatadir) $(DESTDIR)$(sbindir) $(DESTDIR)$(bindir) + install -m 0755 $(srcdir)/mainwindow.py $(DESTDIR)$(pkgdatadir) + ln -fs $(pkgdatadir)/mainwindow.py $(DESTDIR)$(bindir)/crash-catcher-gui +uninstall-local: + rm -fr $(DESTDIR)$(pkgdatadir) + rm -f $(DESTDIR)$(bindir)/crash-catcher-gui + +
\ No newline at end of file diff --git a/src/Makefile.am b/src/Makefile.am index e653c2a..0026975 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1 +1 @@ -SUBDIRS = Hooks Daemon Applet
\ No newline at end of file +SUBDIRS = Hooks Daemon Applet Gui
\ No newline at end of file |
