]> andersk Git - moira.git/blob - regtape/Imakefile
eliminate use of the `register' keyword: let the compiler decide
[moira.git] / regtape / Imakefile
1 # $Header$
2
3 # Copyright 1992 by the Massachusetts Institute of Technology.
4 #
5 # For copying and distribution information,
6 # please see the file <mit-copyright.h>.
7 #
8 # Imakefile for moira regtape programs.
9
10 SRCS= students.c employee.c sign.c verify.c vote.c rafnu.c
11 CODE= students.pc employee.pc sign.pc verify.pc vote.pc rafnu.c
12 SRCDIR = $(SRCTOP)/regtape
13 #ifdef USE_CRYPT_H
14 DEFINES = $(GDSSINC) -DUSE_CRYPT_H
15 #else
16 DEFINES = $(GDSSINC)
17 #endif
18 sqlrule()
19
20 program(students, students.o rafnu.o,,$(CLIBS) $(SQL_LIB), $(PROGDIR))
21 program(employee, employee.o rafnu.o,,$(CLIBS) $(SQL_LIB), $(PROGDIR))
22 program(verify, verify.o rafnu.o,,$(LIBGDSS) $(CLIBS) $(SQL_LIB), $(PROGDIR))
23 program(sign, sign.o rafnu.o,,$(LIBGDSS) $(CLIBS) $(SQL_LIB), $(PROGDIR))
24 program(vote, vote.o rafnu.o,,$(CLIBS) $(SQL_LIB), $(PROGDIR))
25
26 sqlfile(students)
27 sqlfile(employee)
28 sqlfile(sign)
29 sqlfile(verify)
30 sqlfile(vote)
This page took 0.032579 seconds and 5 git commands to generate.