blob: 3409d8cac45cc742cf7a3df34f622d9f3f71182a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#CLEANFILES = openbox.1
MAINTAINERCLEANFILES = Makefile.in
#man_MANS = openbox.1
SUBDIRS = doxygen
#EXTRA_DIST = openbox.1.in
DEFAULT_MENU=$(pkgdatadir)/menu
distclean-local:
$(RM) *\~ .\#*
openbox.1: openbox.1.in
@regex_cmd@ -e "s,@defaultmenu@,$(DEFAULT_MENU)," \
-e "s,@pkgdatadir@,$(pkgdatadir)," \
-e "s,@version@,$(VERSION)," \
@srcdir@/openbox.1.in > openbox.1
|