7d776e30ff
WML is a free and extensible Webdesigner's off-line HTML generation toolkit. It consists of a control frontend driving up to nine backends in a sequential pass-oriented filtering scheme. Each backend provides one particular core language. For maximum power WML additionally ships with a well-suited set of include files which provide higher-level features built on top of the backend core languages. While not trivial and idiot proof WML provides most of the core features real hackers always wanted for HTML generation. Lots of testing and feedback from steven@. Thanks!
31 lines
1.3 KiB
Plaintext
31 lines
1.3 KiB
Plaintext
$OpenBSD: patch-wml_include_Makefile_in,v 1.1.1.1 2006/07/14 16:12:14 bernd Exp $
|
|
--- wml_include/Makefile.in.orig Thu Jun 15 15:56:55 2006
|
|
+++ wml_include/Makefile.in Thu Jun 15 15:59:16 2006
|
|
@@ -25,6 +25,7 @@ bindir = $(prefix)/bin
|
|
libsubdir = @libsubdir@
|
|
libdir = $(prefix)/lib$(libsubdir)
|
|
mandir = $(prefix)/man
|
|
+includedir = @includedir@/wml
|
|
|
|
INSTALLPRIVLIB = @INSTALLPRIVLIB@
|
|
INSTALLARCHLIB = @INSTALLARCHLIB@
|
|
@@ -69,13 +70,13 @@ install:
|
|
base=`echo $$file | sed -e 's/\.wml$$//g'`; \
|
|
dir=`echo $$file | sed -e 's/[a-zA-Z0-9_]*.wml$$//g'`; \
|
|
name=`echo wml/$$base | sed -e 's/\//$(DCOLON)/g'`; \
|
|
- if [ ! -d "$(libdir)/include/$$dir" ]; then \
|
|
- echo "$(MKDIR) $(libdir)/include/$$dir"; \
|
|
- $(MKDIR) $(libdir)/include/$$dir; \
|
|
+ if [ ! -d "$(includedir)/$$dir" ]; then \
|
|
+ echo "$(MKDIR) $(includedir)/$$dir"; \
|
|
+ $(MKDIR) $(includedir)/$$dir; \
|
|
else :; \
|
|
fi; \
|
|
- echo "$(INSTALL_DATA) $$file $(libdir)/include/$$file"; \
|
|
- $(INSTALL_DATA) $$file $(libdir)/include/$$file; \
|
|
+ echo "$(INSTALL_DATA) $$file $(includedir)/$$file"; \
|
|
+ $(INSTALL_DATA) $$file $(includedir)/$$file; \
|
|
echo "$(INSTALL_DATA) $$base.3 $(mandir)/man3/$$name.3"; \
|
|
$(INSTALL_DATA) $$base.3 $(mandir)/man3/$$name.3; \
|
|
done
|