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

79 lines
2.4 KiB
Makefile
Raw Normal View History

2001-11-03 21:43:44 +00:00
# Copyright (c) M. Broek, 1997-2001
2001-11-03 22:45:03 +00:00
# $Id$
2001-11-03 21:43:44 +00:00
include ../Makefile.global
2002-07-26 20:28:49 +00:00
SRCS = endian.c
HDRS = endian.h
OBJS = endian.o
2002-03-31 13:09:23 +00:00
OTHER = Makefile header.txt footer.txt menus-le.tar menus-be.tar txtfiles.tar templates.tar
2001-11-03 21:43:44 +00:00
#####################################################################################
2002-07-26 20:28:49 +00:00
.c.o:
${CC} ${CFLAGS} ${INCLUDES} ${DEFINES} -c $<
all: endian
endian: ${OBJS} ${LIBS}
${CC} -o endian ${OBJS} ${LIBS}
strip endian
install: all
@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
2001-11-03 21:43:44 +00:00
@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}" ; \
2001-11-03 21:43:44 +00:00
fi
@if [ ! -f ${PREFIX}/english/menus/main.mnu ]; then \
tar xfC menus-`./endian`.tar ${PREFIX}/english/menus ; \
echo "tar xfC menus-`./endian`.tar ${PREFIX}/english/menus" ; \
echo "Installed default english menus" ; \
2001-11-03 21:43:44 +00:00
fi
@if [ ! -f ${PREFIX}/english/txtfiles/main.ans ]; then \
tar xfC txtfiles.tar ${PREFIX}/english/txtfiles ; \
echo "Installed default english txtfiles" ; \
2001-11-03 21:43:44 +00:00
fi
2002-05-11 19:52:56 +00:00
@if [ ! -f ${PREFIX}/english/macro/html.tic ]; then \
tar xfC templates.tar ${PREFIX}/english/macro ; \
echo "Installed default english macro files" ; \
2002-05-11 19:52:56 +00:00
fi
2001-11-03 21:43:44 +00:00
clean:
2002-07-26 20:28:49 +00:00
rm -f endian *.o *.h~ *.c~ core filelist Makefile.bak
2001-11-03 21:43:44 +00:00
filelist: Makefile
BASE=`pwd`; \
BASE=`basename $${BASE}`; \
(for f in ${SRCS} ${HDRS} ${OTHER} ;do echo ${PACKAGE}-${VERSION}/$${BASE}/$$f; done) >filelist
2001-11-03 21:43:44 +00:00
depend:
2002-07-26 20:28:49 +00:00
@rm -f Makefile.bak; \
mv Makefile Makefile.bak; \
sed -e '/^# DO NOT DELETE/,$$d' Makefile.bak >Makefile; \
${ECHO} '# DO NOT DELETE THIS LINE - MAKE DEPEND RELIES ON IT' \
>>Makefile; \
${ECHO} '# Dependencies generated by make depend' >>Makefile; \
for f in ${SRCS}; \
do \
${ECHO} "Dependencies for $$f:\c"; \
${ECHO} "`basename $$f .c`.o:\c" >>Makefile; \
for h in `sed -n -e \
's/^#[ ]*include[ ]*"\([^"]*\)".*/\1/p' $$f`; \
do \
${ECHO} " $$h\c"; \
${ECHO} " $$h\c" >>Makefile; \
done; \
${ECHO} " done."; \
${ECHO} "" >>Makefile; \
done; \
${ECHO} '# End of generated dependencies' >>Makefile
2001-11-03 21:43:44 +00:00
2002-07-26 20:28:49 +00:00
# DO NOT DELETE THIS LINE - MAKE DEPEND RELIES ON IT
# Dependencies generated by make depend
endian.o: endian.h
# End of generated dependencies