home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
unix
/
volume26
/
philspell-1.0
/
part01
/
Makefile
< prev
next >
Wrap
Makefile
|
1993-05-01
|
321b
|
20 lines
#CC = philcc
# Change the above to something like gcc or cc if you don't have philcc.
CFLAGS = -g -DNDEBUG
SOURCES = main.c skiplist.c
OBJECTS = main.o skiplist.o
all: philspell
philspell: $(OBJECTS)
$(CC) $(OBJECTS) -o philspell
main.c: skiplist.h
skiplist.c: skiplist.h
clean:
/bin/rm -rf $(OBJECTS) philspell