]> andersk Git - moira.git/commitdiff
rename "employee" to "staff" and "students" to "student" to match
authordanw <danw>
Sat, 9 Jan 1999 05:50:35 +0000 (05:50 +0000)
committerdanw <danw>
Sat, 9 Jan 1999 05:50:35 +0000 (05:50 +0000)
what they've always been called on the moira server

regtape/Makefile.in
regtape/staff.pc [moved from regtape/employee.pc with 100% similarity]
regtape/student.pc [moved from regtape/students.pc with 100% similarity]

index 1295e7d2c91701550e6f2598525380ca6c28d5a3..74a07f949d4658e23a8ea1d9eaee1b568d5560ae 100644 (file)
@@ -28,15 +28,15 @@ SRCTOP=@top_srcdir@
 BUILDTOP=..
 mrbindir=@mrbindir@
 
-STUDENTS_OBJS=students.o
-EMPLOYEE_OBJS=employee.o
+STUDENT_OBJS=student.o
+STAFF_OBJS=staff.o
 VOTE_OBJS=vote.o
 SIGN_OBJS=sign.o
 VERIFY_OBJS=verify.o
 
-CFILES=students.c employee.c vote.c sign.c verify.c
+CFILES=student.c staff.c vote.c sign.c verify.c
 
-TARGET=students employee vote sign verify
+TARGET=student staff vote sign verify
 
 .SUFFIXES: .pc
 
@@ -49,7 +49,7 @@ TARGET=students employee vote sign verify
 all: $(TARGET)
 
 clean:
-       rm -f $(STDENTS_OBJS) $(EMPLOYEE_OBJS) $(VOTE_OBJS)
+       rm -f $(STDENTS_OBJS) $(STAFF_OBJS) $(VOTE_OBJS)
        rm -f $(VERIFY_OBJS) $(SIGN_OBJS) $(CFILES) $(TARGET)
 
 depend: $(CFILES)
@@ -57,11 +57,11 @@ depend: $(CFILES)
 install: all
        @set -x; for p in $(TARGET); do $(INSTALL_PROGRAM) $$p $(mrbindir); done
 
-students: $(STUDENTS_OBJS) $(MR_LIBDEP)
-       $(CC) -o $@ $(LDFLAGS) $(STUDENTS_OBJS) $(SQL_LIBS) $(LIBS)
+student: $(STUDENT_OBJS) $(MR_LIBDEP)
+       $(CC) -o $@ $(LDFLAGS) $(STUDENT_OBJS) $(SQL_LIBS) $(LIBS)
 
-employee: $(EMPLOYEE_OBJS) $(MR_LIBDEP)
-       $(CC) -o $@ $(LDFLAGS) $(EMPLOYEE_OBJS) $(SQL_LIBS) $(LIBS)
+staff: $(STAFF_OBJS) $(MR_LIBDEP)
+       $(CC) -o $@ $(LDFLAGS) $(STAFF_OBJS) $(SQL_LIBS) $(LIBS)
 
 vote: $(VOTE_OBJS) $(MR_LIBDEP)
        $(CC) -o $@ $(LDFLAGS) $(VOTE_OBJS) $(SQL_LIBS) $(LIBS)
similarity index 100%
rename from regtape/employee.pc
rename to regtape/staff.pc
similarity index 100%
rename from regtape/students.pc
rename to regtape/student.pc
This page took 0.040191 seconds and 5 git commands to generate.