2005-06-15 Tor Lillqvist <tml@novell.com> * plugin.mk: Expand also @SOEXT@. * server.mk: Expand also @SOEXT@ and @EXEEXT@. svn path=/trunk/; revision=29511
14 lines
422 B
Makefile
14 lines
422 B
Makefile
%.server.in: %.server.in.in
|
|
sed -e 's|\@BINDIR\@|$(bindir)|' \
|
|
-e 's|\@LIBEXECDIR\@|$(privlibexecdir)|' \
|
|
-e 's|\@COMPONENTDIR\@|$(componentdir)|' \
|
|
-e 's|\@IMPORTERSDIR\@|$(importersdir)|' \
|
|
-e 's|\@VERSION\@|$(BASE_VERSION)|' \
|
|
-e 's|\@EXEEXT\@|$(EXEEXT)|' \
|
|
-e 's|\@SOEXT\@|$(SOEXT)|' \
|
|
-e 's|\@INTERFACE_VERSION\@|$(INTERFACE_VERSION)|' $< > $@
|
|
|
|
%_$(BASE_VERSION).server: %.server
|
|
mv $< $@
|
|
|