--- Makefile.in 2002/11/27 22:44:48 1.18
+++ Makefile.in 2002/11/28 20:44:36 1.19
@@ -1,11 +1,12 @@
##
-## OSSP titraq - Graphical user interface for time accounting
-## Copyright (c) 2002 Cable & Wireless Deutschland GmbH
-## Copyright (c) 2002 The OSSP Project <http://www.ossp.org/>
-## Copyright (c) 2002 Ralf S. Engelschall
+## OSSP asgui - Accounting system graphical user interface
+## Copyright (c) 2002-2003 The OSSP Project (http://www.ossp.org/)
+## Copyright (c) 2002-2003 Cable & Wireless Deutschland (http://www.cw.com/de/)
+## Copyright (c) 2002-2003 Ralf S. Engelschall <rse@engelschall.com>
+## Copyright (c) 2002-2003 Michael Schloh von Bennewitz <michael@schloh.com>
##
-## This file is part of OSSP GUI, a graphical user interface
-## for OSSP which can be found at http://www.ossp.org/
+## This file is part of OSSP asgui, an accounting system graphical user
+## interface which can be found at http://www.ossp.org/pkg/tool/asgui/.
##
## Permission to use, copy, modify, and distribute this software for
## any purpose with or without fee is hereby granted, provided that
@@ -25,7 +26,7 @@
## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
## SUCH DAMAGE.
##
-## Makefile.in: Makefile for use with configure
+## Makefile.in: Autoconf Makefile template
##
@SET_MAKE@
@@ -65,7 +66,7 @@
TARGET_PROGS = titraq
TARGET_MANS = titraq.1 titraq.conf.5
-SRCS = main.cpp titraq.cpp titassist.cpp titslot.cpp tidatops.cpp titrex.cpp generic.cpp titamount.cpp titable.cpp titprefs.cpp titraq_version.c
+SRCS = main.cpp titraq.cpp titassist.cpp titslot.cpp tidatops.cpp titrex.cpp generic.cpp titamount.cpp titable.cpp titprefs.cpp titraq_version.cpp
OBJS = main.o titraq.o titassist.o titslot.o tidatops.o titrex.o generic.o titamount.o titable.o titprefs.o titraq_version.o
@@ -98,18 +99,22 @@
$(MOC) $< -o $@
titraq.1: titraq.pod
- VS=`$(SHTOOL) version -lc -dshort titraq_version.c`; \
- VL=`$(SHTOOL) version -lc -dlong titraq_version.c`; \
- $(POD2MAN) --section=5 --center="Graphical user interface" \
- --release="$$VS" --date="$$VL" \
- titraq.pod >titraq.1
+ VS=`$(SHTOOL) version -lc -dshort titraq_version.cpp`; \
+ VL=`$(SHTOOL) version -lc -dlong titraq_version.cpp`; \
+ D=`$(SHTOOL) version -lc -dlong titraq_vers.c | sed -e 's;.*(;;' -e 's;).*;;'`; \
+ $(POD2MAN) --quotes=none \
+ --section=1 --center="AS Graphical User Interface" \
+ --release="$$D" --date="OSSP asgui $$VS" titraq.pod | \
+ sed -e "s;TITRAQ_VERSION_STR;$$VL;" >titraq.1
titraq.conf.5: titraq.conf.pod
- VS=`$(SHTOOL) version -lc -dshort titraq_version.c`; \
- VL=`$(SHTOOL) version -lc -dlong titraq_version.c`; \
- $(POD2MAN) --section=5 --center="Graphical user interface config file" \
- --release="$$VS" --date="$$VL" \
- titraq.conf.pod >titraq.conf.5
+ VS=`$(SHTOOL) version -lc -dshort titraq_version.cpp`; \
+ VL=`$(SHTOOL) version -lc -dlong titraq_version.cpp`; \
+ D=`$(SHTOOL) version -lc -dlong titraq_vers.c | sed -e 's;.*(;;' -e 's;).*;;'`; \
+ $(POD2MAN) --quotes=none \
+ --section=5 --center="AS Preferences File" \
+ --release="$$D" --date="OSSP asgui $$VS" titraq.conf.pod | \
+ sed -e "s;TITRAQ_VERSION_STR;$$VL;" >titraq.conf.5
install:
$(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(prefix)
@@ -133,7 +138,7 @@
distclean: clean
$(RM) config.log config.status config.cache # Generated by ./configure
$(RM) Makefile ac_config.h # Generated by ./configure
- $(RM) $(MOC_OUT) # Generated by $(MOC)
+ $(RM) $(MOC_OUT) # Generated by $(MOC)
realclean: distclean
$(RM) configure ac_config.h.in* # Generated by Autoconf
|