From: Ben Gras Date: Wed, 1 Nov 2006 16:53:45 +0000 (+0000) Subject: obsolete server. X-Git-Tag: v3.1.3~152 X-Git-Url: http://zhaoyanbai.com/repos/man.dnssec-dsfromkey.html?a=commitdiff_plain;h=64dbdd855d484afeb0f4c95dd32687c423d479cd;p=minix.git obsolete server. --- diff --git a/servers/sm/Makefile b/servers/sm/Makefile deleted file mode 100644 index 3fa3184ba..000000000 --- a/servers/sm/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# Makefile for System Process Manager (SM) -SERVER = sm -UTIL = service - -# directories -u = /usr -i = $u/include -s = $i/sys -m = $i/minix -b = $i/ibm - -# programs, flags, etc. -CC = exec cc -CFLAGS = -I$i $(CPROFILE) -LDFLAGS = -i -UTIL_LIBS = -lsys -LIBS = -lsys -lsysutil - -UTIL_OBJ = service.o -OBJ = sm.o manager.o - -# build local binary -all build: $(SERVER) $(UTIL) -$(UTIL): $(UTIL_OBJ) - $(CC) -o $@ $(LDFLAGS) $(UTIL_OBJ) $(UTIL_LIBS) -$(SERVER): $(OBJ) - $(CC) -o $@ $(LDFLAGS) $(OBJ) $(LIBS) - -# install with other servers -install: /bin/$(UTIL) /usr/sbin/$(SERVER) -/bin/$(UTIL): $(UTIL) - install -c $? $@ -/usr/sbin/$(SERVER): $(SERVER) - install -o root -c $? $@ - -# clean up local files -clean: - rm -f $(UTIL) $(SERVER) *.o *.bak - -depend: - /usr/bin/mkdep "$(CC) -E $(CPPFLAGS)" *.c > .depend - -# Include generated dependencies. -include .depend -