projects
/
iserv-mod-error-reporter.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixed broken comment function: Change button had no name
[iserv-mod-error-reporter.git]
/
Makefile
diff --git
a/Makefile
b/Makefile
index
a4bf949
..
3b25f0f
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-26,6
+26,10
@@
# THE SOFTWARE.
#
# THE SOFTWARE.
#
+PACKAGENAME=iserv-mod-error-reporter
+VERSION:=$(shell grep "^$(PACKAGENAME)" debian/changelog | head -1 | sed -e "s/$(PACKAGENAME) (\([0-9.]\+\).*).*/\1/ ")
+
+SHELL=/bin/bash
INSTALLDIR=/opt/iserv
LN=ln -f
RM=rm -rf
INSTALLDIR=/opt/iserv
LN=ln -f
RM=rm -rf
@@
-81,10
+85,12
@@
endif
# maintenance files
$(MKDIR) $(DESTDIR)/usr/share/iserv/modules/error-reporter
# maintenance files
$(MKDIR) $(DESTDIR)/usr/share/iserv/modules/error-reporter
- $(LN) maint/
update.php
$(DESTDIR)/usr/share/iserv/modules/error-reporter
+ $(LN) maint/
*
$(DESTDIR)/usr/share/iserv/modules/error-reporter
# build doxygen documentation from source
sourcedoc:
# build doxygen documentation from source
sourcedoc:
+ cat Doxyfile.in | sed -e "s/{{{VERSION}}}/$(VERSION)/" \
+ -e "s/{{{PACKAGENAME}}}/$(PACKAGENAME)/" > Doxyfile
doxygen
mv doc/source/html/* doc/source/ && rm -rf doc/source/html
doxygen
mv doc/source/html/* doc/source/ && rm -rf doc/source/html
@@
-122,6
+128,7
@@
endif
# clean up
clean: distclean
# clean up
clean: distclean
+ [ -e Doxyfile ] && rm Doxyfile
distclean:
$(RM) doc/source
distclean:
$(RM) doc/source
This page took
0.021414 seconds
and
4
git commands to generate.