Files
magic/windows/Makefile
T
Tim Edwards bc00b5578b Implemented a new configuration variable "dist_prefix" for
distributed installations, where the immediate installation location
is different from the final installation location, but in the case
where it is not desirable to put the entire install hierarchy as a
subdirectory of DESTDIR.
2020-01-28 10:40:01 -05:00

28 lines
910 B
Makefile

#
# rcsid $Header: /usr/cvsroot/magic-8.0/windows/Makefile,v 1.1.1.1 2008/02/03 20:43:50 tim Exp $
#
MODULE = windows
MAGICDIR = ..
SRCS = windClient.c windCmdAM.c windCmdNR.c windCmdSZ.c \
windSend.c windDebug.c windDisp.c windMain.c windMove.c \
windSearch.c windTrans.c windView.c
GLYPHS = windows7.glyphs windows11.glyphs windows14.glyphs windows22.glyphs
FONTS = vfont.B.12 vfont.I.12 vfont.R.8
include ${MAGICDIR}/defs.mak
include ${MAGICDIR}/rules.mak
install-tcl:
@echo --- installing glyphs to $(DESTDIR)${INSTALL_SYSDIR}
for i in ${GLYPHS} ${FONTS}; do \
(cd $(DESTDIR)${INSTALL_SYSDIR} && ${RM} $$i); \
${CP} $$i $(DESTDIR)${INSTALL_SYSDIR}; done
install:
@echo --- installing glyphs to $(DESTDIR)${INSTALL_SYSDIR}
for i in ${GLYPHS} ${FONTS}; do \
(cd $(DESTDIR)${INSTALL_SYSDIR} && ${RM} $$i); \
${CP} $$i $(DESTDIR)${INSTALL_SYSDIR}; done