From: danw Date: Sat, 9 Jan 1999 05:50:35 +0000 (+0000) Subject: rename "employee" to "staff" and "students" to "student" to match X-Git-Url: http://andersk.mit.edu/gitweb/moira.git/commitdiff_plain/ba1f57aed838d0f1a04906e8b16ac6d3ea33b58f rename "employee" to "staff" and "students" to "student" to match what they've always been called on the moira server --- diff --git a/regtape/Makefile.in b/regtape/Makefile.in index 1295e7d2..74a07f94 100644 --- a/regtape/Makefile.in +++ b/regtape/Makefile.in @@ -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) diff --git a/regtape/employee.pc b/regtape/staff.pc similarity index 100% rename from regtape/employee.pc rename to regtape/staff.pc diff --git a/regtape/students.pc b/regtape/student.pc similarity index 100% rename from regtape/students.pc rename to regtape/student.pc