]> andersk Git - moira.git/blame - regtape/Makefile
Initial revision
[moira.git] / regtape / Makefile
CommitLineData
45ee4fc3 1#
2# $Source$
3# $Header$
4#
5
6#
7# Makefile for the sms stuff --mark roman 7/6/87
8#
9CFILES = adduser.c rafnu.c
10OFILES = adduser.o rafnu.o
11OUTP = regtape
12
13DESTDIR =
14
15# Note that -lkrb is used, but not -ldes, since smsglue only calls
16# get_krbrlm()
17
18LIBS = ../server/libsmsglue.a ../rpc/libsms.a -lcom_err -lkrb \
19 /usr/rtingres/lib/libqlib /usr/rtingres/lib/compatlib
20CFLAGS = -I../include -L../lib
21
22all: $(OUTP)
23
24debug:
25 cc $(CFLAGS) -DDEBUG -c adduser.c
26
27
28$(OUTP): $(OFILES)
29 cc -o $(OUTP) $(CFLAGS) $(OFILES) $(LIBS)
30
31ci:
32 ci $(CFILES)
33
34clean:
35 rm -f $(OUTP) $(OFILES) core
36 rm -f *~ *.o
37
38lint:
39 lint $(CFILES)
40
41install:
42 install regtape ../bin/regtape
This page took 0.049692 seconds and 5 git commands to generate.