This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/examples/Makefile
2002-03-31 15:04:34 +00:00

53 lines
1.9 KiB
Makefile

# Copyright (c) M. Broek, 1997-2001
# $Id$
include ../Makefile.global
OTHER = Makefile header.txt footer.txt menus-le.tar menus-be.tar txtfiles.tar templates.tar
#####################################################################################
install:
@if [ ! -f ${ETCDIR}/header.txt ]; then \
${INSTALL} -c -o ${OWNER} -g ${GROUP} -m 0644 header.txt ${ETCDIR} ; \
echo "${INSTALL} -c -o ${OWNER} -g ${GROUP} -m 0644 header.txt ${ETCDIR}" ; \
fi
@if [ ! -f ${ETCDIR}/footer.txt ]; then \
${INSTALL} -c -o ${OWNER} -g ${GROUP} -m 0644 footer.txt ${ETCDIR} ; \
echo "${INSTALL} -c -o ${OWNER} -g ${GROUP} -m 0644 footer.txt ${ETCDIR}" ; \
fi
@if [ ! -f ${PREFIX}/english/menus/main.mnu ]; then \
if [ "${HOSTTYPE}" = "i386" ] || [ "${MACHTYPE}" = "i386" ]; then \
tar xfC menus-le.tar ${PREFIX}/english/menus ; \
echo "Installing default english menus for a Little-Endian (i386) system" ; \
else \
tar xfC menus-be.tar ${PREFIX}/english/menus ; \
echo "Installing default english menus for a Big-Endian (Alpha/Sparc etc.) system" ; \
fi \
fi
@if [ ! -f ${PREFIX}/english/txtfiles/main.ans ]; then \
tar xfC txtfiles.tar ${PREFIX}/english/txtfiles ; \
echo "Installing default english txtfiles" ; \
fi
@echo -e "\a"
@echo "WARNING: overwriting all your templates! Do not customize them yet,"
@echo "there will be a lot of changes coming. If you still do so, it is not our fault"
@echo "Also do not make any translations yet! Wait until we are ready with this"
@echo "End of WARNING WARNING WARNING."
@echo -e "\a"
@echo -n "Press ENTER to continue: "
@read junk
tar xfC templates.tar ${PREFIX}/english/macro
clean:
rm -f filelist Makefile.bak
filelist: Makefile
BASE=`pwd`; \
BASE=`basename $${BASE}`; \
(for f in ${OTHER} ;do echo ${PACKAGE}-${VERSION}/$${BASE}/$$f; done) >filelist
all:
depend: