blob: 43d97ee4d5dad44466a52a33e14f78bcf4ff6107 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Makefile for TeXplorators index
#
# config.sun-gcc.h is supplied as a model.
# UnixTeX would like to hear of any interesting
# configuration files for other systems.
# Copy the appropriate config.*.h to config.h
# then make
#
# This Makefile may not work for MSDOS. Make your
# own one, or compile by hand.
#
CFLAGS = -g
CC = gcc
all: index
index: index.o
cc -o index index.o
index.o: index.c config.h
clean:
rm -f *.o *~ \#* core
veryclean: clean
rm -f config.h index
|