Changes touching the build: - Bumped version to 0.5.0. - Removed dependency on Xfce libs (it only depends on GTK+-2.0.) - Updated Makefile with new source files. - Build ChangeLog through a script (remove it from source tree.) More generally speaking, the interface is build on top of a GtkBuilder UI definition, with a personal GtkTreeView and a Settings GObject to update the information shown on the interface on changes. All the code is being written with GObjects which will make it a lot easier to separate GUI code and system code.
26 lines
582 B
Makefile
26 lines
582 B
Makefile
SUBDIRS = \
|
|
po \
|
|
src
|
|
|
|
desktopdir = $(datadir)/applications
|
|
desktop_in_files = xfce4-taskmanager.desktop.in
|
|
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
|
|
ChangeLog:
|
|
ChangeLog-git.sh > $(srcdir)/ChangeLog || touch $(srcdir)/ChangeLog
|
|
|
|
EXTRA_DIST = \
|
|
intltool-extract.in \
|
|
intltool-merge.in \
|
|
intltool-update.in \
|
|
$(desktop_in_files)
|
|
|
|
DISTCLEANFILES = \
|
|
intltool-extract \
|
|
intltool-merge \
|
|
intltool-update \
|
|
$(desktop_DATA)
|
|
|
|
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
|