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/mbtask/Makefile

88 lines
3.5 KiB
Makefile
Raw Normal View History

2001-11-03 21:57:45 +00:00
# Makefile for mbtask.
# Copyright (c) 1997-2001 by M. Broek.
2001-11-03 22:45:03 +00:00
# $Id$
2001-11-03 21:57:45 +00:00
include ../Makefile.global
SRCS = callstat.c scanout.c taskcomm.c taskinfo.c taskstat.c \
2002-02-22 21:15:21 +00:00
mbtask.c outstat.c signame.c taskdisk.c taskregs.c taskutil.c \
2004-02-21 17:22:00 +00:00
ports.c calllist.c ping.c taskchat.c crc.c
2001-11-03 21:57:45 +00:00
HDRS = callstat.h mbtask.h outstat.h signame.h taskdisk.h taskregs.h taskutil.h \
2004-02-21 17:22:00 +00:00
scanout.h taskcomm.h taskinfo.h taskstat.h \
ports.h calllist.h ping.h taskchat.h
OBJS = callstat.o scanout.o taskcomm.o taskinfo.o taskstat.o \
2002-02-22 21:15:21 +00:00
mbtask.o outstat.o signame.o taskdisk.o taskregs.o taskutil.o \
2004-02-21 17:22:00 +00:00
ports.o calllist.o ping.o taskchat.o crc.o
LIBS += ../lib/libnodelist.a
2002-01-22 19:53:09 +00:00
OTHER = Makefile issue issue.netbsd
2001-11-03 21:57:45 +00:00
#############################################################################
.c.o:
2003-12-21 14:58:25 +00:00
${CC} ${CFLAGS} ${INCLUDES} ${DEFINES} -c $<
2001-11-03 21:57:45 +00:00
all: mbtask
mbtask: ${OBJS} ${LIBS}
2003-12-18 22:44:09 +00:00
${CC} ${CFLAGS} -o mbtask ${OBJS} ${LDFLAGS} ${LIBS}
2001-11-03 21:57:45 +00:00
clean:
rm -f mbtask *.o *.h~ *.c~ version.* core filelist Makefile.bak
install: all
@if [ "`id -un`" != "root" ] ; then \
echo; echo " Must be root to install!"; echo; exit 3; \
fi
${INSTALL} -c -s -o ${ROWNER} -g ${RGROUP} -m 6755 mbtask ${BINDIR}
2001-11-03 21:57:45 +00:00
@if [ ! -f ${ETCDIR}/issue ]; then \
2001-12-20 21:52:13 +00:00
${INSTALL} -c -o ${OWNER} -g ${GROUP} -m 0644 issue ${ETCDIR} ; \
echo "${INSTALL} -c -o ${OWNER} -g ${GROUP} -m 0644 issue ${ETCDIR}"; \
2001-11-03 21:57:45 +00:00
fi
filelist: Makefile
BASE=`pwd`; \
BASE=`basename $${BASE}`; \
(for f in ${SRCS} ${HDRS} ${OTHER} ;do echo ${PACKAGE}-${VERSION}/$${BASE}/$$f; done) >filelist
depend:
@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
# DO NOT DELETE THIS LINE - MAKE DEPEND RELIES ON IT
# Dependencies generated by make depend
2004-02-21 17:22:00 +00:00
callstat.o: ../config.h ../lib/mbselib.h taskutil.h callstat.h
scanout.o: ../config.h ../lib/mbselib.h taskutil.h scanout.h
taskcomm.o: ../config.h ../lib/mbselib.h taskstat.h taskregs.h taskdisk.h taskinfo.h taskutil.h taskchat.h taskcomm.h
taskinfo.o: ../config.h ../lib/mbselib.h taskinfo.h
taskstat.o: ../config.h ../lib/mbselib.h taskstat.h callstat.h outstat.h taskutil.h
mbtask.o: ../config.h ../lib/mbselib.h ../paths.h signame.h taskstat.h taskutil.h taskregs.h taskcomm.h callstat.h outstat.h ../lib/nodelist.h ports.h calllist.h ping.h taskchat.h mbtask.h
outstat.o: ../config.h ../lib/mbselib.h taskutil.h taskstat.h scanout.h ../lib/nodelist.h callstat.h ports.h outstat.h
2002-06-30 13:20:57 +00:00
signame.o: ../config.h signame.h
2004-02-21 17:22:00 +00:00
taskdisk.o: ../config.h ../lib/mbselib.h taskdisk.h taskutil.h
taskregs.o: ../config.h ../lib/mbselib.h taskstat.h taskregs.h taskchat.h taskutil.h
taskutil.o: ../config.h ../lib/mbselib.h signame.h scanout.h taskutil.h
ports.o: ../config.h ../lib/mbselib.h taskutil.h ../lib/nodelist.h ports.h
calllist.o: ../config.h ../lib/mbselib.h taskstat.h taskutil.h callstat.h outstat.h mbtask.h calllist.h
ping.o: ../config.h ../lib/mbselib.h taskstat.h taskutil.h ping.h
taskchat.o: ../config.h ../lib/mbselib.h taskutil.h taskregs.h taskchat.h
crc.o: ../config.h ../lib/mbselib.h
2001-11-03 21:57:45 +00:00
# End of generated dependencies