mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
This splits the modpython, modperl and modtcl specific parts of modules/Makefile.in into separate files. There shouldn't be any other changes than this in here (hopefully). git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@2209 726aef4b-f618-498e-8847-2d620e286838
15 lines
358 B
Makefile
15 lines
358 B
Makefile
ifeq "$(TCL_FLAGS)" ""
|
|
FILES := $(shell echo $(FILES) | sed -e "s:extra/modtcl::")
|
|
else
|
|
TCLHOOK := modtcl_install
|
|
endif
|
|
modtclFLAGS := $(TCL_FLAGS)
|
|
|
|
.PHONY: modtcl_install
|
|
|
|
install: $(TCLHOOK)
|
|
|
|
modtcl_install:
|
|
mkdir -p $(DESTDIR)$(DATADIR)/modtcl/
|
|
$(INSTALL_DATA) $(srcdir)/extra/modtcl.tcl $(srcdir)/extra/binds.tcl $(DESTDIR)$(DATADIR)/modtcl/
|