]> andersk Git - moira.git/blobdiff - regtape/Makefile
Added user status information as argument #10 to the incremental program
[moira.git] / regtape / Makefile
index be4e68afb4b0032985e084e535a5c5a3ce426cc6..b38e02a636df97d7459bfe64d9bff0d4ef40ac1a 100644 (file)
@@ -4,39 +4,51 @@
 #
 
 #
-#      Makefile for the sms stuff --mark roman 7/6/87
+#      Makefile for the moira stuff --mark roman 7/6/87
 #
-CFILES = adduser.c rafnu.c
-OFILES = adduser.o rafnu.o
-OUTP   = regtape
+CFILES = rafnu.c students.c employee.c
 
-DESTDIR =
-
-# Note that -lkrb is used, but not -ldes, since smsglue only calls 
-# get_krbrlm()
-
-LIBS   =  ../server/libsmsglue.a ../rpc/libsms.a -lcom_err -lkrb \
+LIBS   =  -L../lib -lmoira -lgdb -lcom_err -lzephyr -lkrb -ldes \
        /usr/rtingres/lib/libqlib /usr/rtingres/lib/compatlib
-CFLAGS  = -I../include -L../lib
+CFLAGS  = -I../include
 
-all:   $(OUTP)
+.SUFFIXES: .qc
 
-debug: 
-       cc $(CFLAGS) -DDEBUG -c adduser.c 
+.qc.c: 
+       rm -f $*.c
+       /usr/rtingres/bin/eqc -p $*
 
+all:   students employee
 
-$(OUTP): $(OFILES)
-        cc -o $(OUTP) $(CFLAGS) $(OFILES) $(LIBS)
+students: students.o rafnu.o
+       cc -o students students.o rafnu.o $(LIBS)
 
-ci:
-       ci $(CFILES) 
+employee: employee.o rafnu.o
+       cc -o employee employee.o rafnu.o $(LIBS)
 
 clean: 
-       rm -f $(OUTP) $(OFILES) core
+       rm -f regtape students employee core
+       rm -f students.c employee.c
        rm -f *~ *.o
 
 lint: 
        lint $(CFILES)
 
-install:
-       install regtape ../bin/regtape
+install: students employee
+       install -c students ../bin/students
+       install -c employee ../bin/employee
+
+depend:        ${CFILES}
+       mkdep ${CFLAGS} ${CFILES}
+
+# DO NOT DELETE THIS LINE -- mkdep uses it.
+
+rafnu.o: rafnu.c /usr/include/stdio.h /usr/include/ctype.h
+students.o: students.c /usr/include/stdio.h /usr/include/strings.h
+students.o: /usr/include/ctype.h /usr/include/sys/time.h
+students.o: /usr/include/sys/time.h ../include/moira.h ../include/mr_et.h
+students.o: ../include/moira_site.h ../include/mit-copyright.h
+employee.o: employee.c /usr/include/stdio.h /usr/include/strings.h
+employee.o: /usr/include/ctype.h /usr/include/sys/time.h
+employee.o: /usr/include/sys/time.h ../include/moira.h ../include/mr_et.h
+employee.o: ../include/moira_site.h ../include/mit-copyright.h
This page took 0.0364449999999999 seconds and 4 git commands to generate.