X-Git-Url: http://andersk.mit.edu/gitweb/moira.git/blobdiff_plain/8defc06b8af7d99c7b46eaa73d5e9d7c8f044d52..67805159a972397342c342ee735c8acd640e1399:/clients/moira/Makefile diff --git a/clients/moira/Makefile b/clients/moira/Makefile index e4c55043..230f485b 100644 --- a/clients/moira/Makefile +++ b/clients/moira/Makefile @@ -27,17 +27,23 @@ LIBS = ${MOIRALIB} -lcurses -ltermcap -lkrb -ldes -lhesiod SRCS = utils.c attach.c cluster.c delete.c globals.c lists.c main.c \ menu.c menus.c nfs.c pobox.c quota.c user.c dcmmaint.c printer.c \ - misc.c + misc.c zephyr.c OBJS = attach.o cluster.o delete.o globals.o lists.o main.o menu.o \ menus.o nfs.o pobox.o quota.o user.o utils.o dcmmaint.o printer.o \ - misc.o + misc.o zephyr.o +NOBJS = namespace.o globals.o lists.o menu.o \ + pobox.o user.o utils.o misc.o -all: moira +all: moira namespace moira: ${OBJS} rm -f moira cc ${CFLAGS} ${LDFLAGS} -o moira ${OBJS} ${LIBS} +namespace: ${NOBJS} + rm -f namespace + cc ${CFLAGS} ${LDFLAGS} -o namespace ${NOBJS} ${LIBS} + lint: lint -I../../include *.c