ossp-pkg/as/as-gui/Makefile.in 1.47 -> 1.48
--- Makefile.in 2003/03/05 20:24:52 1.47
+++ Makefile.in 2003/03/06 16:24:27 1.48
@@ -154,6 +154,24 @@
--release="$$D" --date="as-gui $$VS" as-gui.conf.pod | \
sed -e "s;ASGUI_VERSION_STR;$$VL;" >as-gui.conf.5
+as-events.5: as-events.pod
+ VS=`$(SHTOOL) version -lc -dshort as_version.cpp`; \
+ VL=`$(SHTOOL) version -lc -dlong as_version.cpp`; \
+ D=`$(SHTOOL) version -lc -dlong as_version.cpp | sed -e 's;.*(;;' -e 's;).*;;'`; \
+ $(POD2MAN) --quotes=none \
+ --section=5 --center="AS Events File" \
+ --release="$$D" --date="as-gui $$VS" as-events.pod | \
+ sed -e "s;ASGUI_VERSION_STR;$$VL;" >as-events.5
+
+as-accounts.5: as-accounts.pod
+ VS=`$(SHTOOL) version -lc -dshort as_version.cpp`; \
+ VL=`$(SHTOOL) version -lc -dlong as_version.cpp`; \
+ D=`$(SHTOOL) version -lc -dlong as_version.cpp | sed -e 's;.*(;;' -e 's;).*;;'`; \
+ $(POD2MAN) --quotes=none \
+ --section=5 --center="AS Accounts File" \
+ --release="$$D" --date="as-gui $$VS" as-accounts.pod | \
+ sed -e "s;ASGUI_VERSION_STR;$$VL;" >as-accounts.5
+
install: all
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(prefix)
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(bindir)
@@ -163,10 +181,14 @@
$(SHTOOL) install -c -s -m 755 as-gui $(DESTDIR)$(bindir)/as-gui
$(SHTOOL) install -c -m 644 as-gui.1 $(DESTDIR)$(mandir)/man1/as-gui.1
$(SHTOOL) install -c -m 644 as-gui.conf.5 $(DESTDIR)$(mandir)/man5/as-gui.conf.5
+ $(SHTOOL) install -c -m 644 as-events.5 $(DESTDIR)$(mandir)/man5/as-events.5
+ $(SHTOOL) install -c -m 644 as-accounts.5 $(DESTDIR)$(mandir)/man5/as-accounts.5
$(SHTOOL) install -c -m 644 as-gui.html $(DESTDIR)$(datadir)/as-gui.html
uninstall:
$(RM) $(DESTDIR)$(datadir)/as-gui.html
+ $(RM) $(DESTDIR)$(mandir)/man5/as-accounts.5
+ $(RM) $(DESTDIR)$(mandir)/man5/as-events.5
$(RM) $(DESTDIR)$(mandir)/man5/as-gui.conf.5
$(RM) $(DESTDIR)$(mandir)/man1/as-gui.1
$(RM) $(DESTDIR)$(bindir)/as-gui
|
|