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

90 lines
3.8 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
2005-04-16 14:49:58 +00:00
SRCS = callstat.c scanout.c taskcomm.c taskinfo.c taskstat.c taskibc.c \
2002-02-22 21:15:21 +00:00
mbtask.c outstat.c signame.c taskdisk.c taskregs.c taskutil.c \
ports.c calllist.c ping.c taskchat.c crc.c pidinfo.c
2001-11-03 21:57:45 +00:00
HDRS = callstat.h mbtask.h outstat.h signame.h taskdisk.h taskregs.h taskutil.h \
2005-04-16 14:49:58 +00:00
scanout.h taskcomm.h taskinfo.h taskstat.h taskibc.h \
2004-02-21 17:22:00 +00:00
ports.h calllist.h ping.h taskchat.h
2005-04-16 14:49:58 +00:00
OBJS = callstat.o scanout.o taskcomm.o taskinfo.o taskstat.o taskibc.o \
2002-02-22 21:15:21 +00:00
mbtask.o outstat.o signame.o taskdisk.o taskregs.o taskutil.o \
ports.o calllist.o ping.o taskchat.o crc.o pidinfo.o
2005-01-06 22:34:53 +00:00
SLIBS = ../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:
2007-05-27 12:47:02 +00:00
${CC} ${CFLAGS} ${INCLUDES} ${DEFINES} -c $<
2001-11-03 21:57:45 +00:00
all: mbtask
2005-01-06 22:34:53 +00:00
mbtask: ${OBJS} ${SLIBS}
2005-01-06 22:34:53 +00:00
${CC} ${CFLAGS} -o mbtask ${OBJS} ${LDFLAGS} ${LIBS} ${SLIBS}
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
2005-01-06 22:34:53 +00:00
${INSTALL} -c -s -o ${ROWNER} -g ${RGROUP} -m 6711 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
2006-02-13 19:26:30 +00:00
taskcomm.o: ../config.h ../lib/mbselib.h taskstat.h taskregs.h taskdisk.h taskinfo.h taskutil.h taskchat.h taskcomm.h taskibc.h
2004-02-21 17:22:00 +00:00
taskinfo.o: ../config.h ../lib/mbselib.h taskinfo.h
2005-05-01 09:18:17 +00:00
taskstat.o: ../config.h ../lib/mbselib.h taskstat.h callstat.h outstat.h taskibc.h taskutil.h
2005-04-22 21:18:45 +00:00
taskibc.o: ../config.h ../lib/mbselib.h taskstat.h taskutil.h taskchat.h taskibc.h
2005-04-16 14:49:58 +00:00
mbtask.o: ../config.h ../lib/mbselib.h ../paths.h signame.h taskstat.h taskutil.h taskregs.h taskcomm.h taskdisk.h taskibc.h callstat.h outstat.h ../lib/nodelist.h ports.h calllist.h ping.h taskchat.h mbtask.h
2004-02-21 17:22:00 +00:00
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
2005-04-16 14:49:58 +00:00
taskchat.o: ../config.h ../lib/mbselib.h taskutil.h taskregs.h taskchat.h taskibc.h
2004-02-21 17:22:00 +00:00
crc.o: ../config.h ../lib/mbselib.h
2006-02-13 19:26:30 +00:00
pidinfo.o: ../config.h ../lib/mbselib.h
2001-11-03 21:57:45 +00:00
# End of generated dependencies