Article Figure 1 Figure 2 Listing 1 Listing 2
Listing 3 Listing 4 Listing 5 Listing 6 Sidebar 1
Sidebar 2 Sidebar 3 feb96.tar

Listing 6: makefile

#
# Makefile for latool
#

OBJS=latool.o seluser.o fillit.o check.o
CC=cc

latool: $(OBJS)
$(CC) -o $@ $(OBJS)

latool.o  : latool.h latool.c
$(CC) -c latool.c
fillit.o  : latool.h fillit.c
$(CC) -c fillit.c
seluser.o : latool.h seluser.c
$(CC) -c seluser.c
check.o   : latool.h check.c
$(CC) -c check.c

clean:
rm -f $(OBJS)

# End of File