]> andersk Git - moira.git/blob - regtape/Imakefile
second code style cleanup: void/void * usage, proper #includes. try to
[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
11 CODE= students.pc employee.pc sign.pc verify.pc vote.pc
12 SRCDIR = $(SRCTOP)/regtape
13 #ifdef USE_CRYPT_H
14 DEFINES = -DUSE_CRYPT_H
15 #endif
16 GDSS_INC = $(GDSSINC)
17 sqlrule()
18
19 program(students, students.o,,$(CLIBS) $(SQL_LIB), $(PROGDIR))
20 program(employee, employee.o,,$(CLIBS) $(SQL_LIB), $(PROGDIR))
21 program(verify, verify.o,,$(LIBGDSS) $(CLIBS) $(SQL_LIB), $(PROGDIR))
22 program(sign, sign.o,,$(LIBGDSS) $(CLIBS) $(SQL_LIB), $(PROGDIR))
23 program(vote, vote.o,,$(CLIBS) $(SQL_LIB), $(PROGDIR))
24
25 sqlfile(students)
26 sqlfile(employee)
27 sqlfile(sign)
28 sqlfile(verify)
29 sqlfile(vote)
This page took 0.531016 seconds and 5 git commands to generate.