home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume11
/
tab
/
part01
/
Makefile
< prev
next >
Wrap
Makefile
|
1990-03-10
|
404b
|
18 lines
# Makefile for tab. There are only two changes that need to be made depending
# on whether or not your system has getopt.
CC = cc -O
PROG = tab
# Remove getopt.o from the following line if your system has getopt.
OBJ = tab.o getopt.o
$(PROG): $(OBJ)
$(CC) -o $(PROG) $(OBJ)
tab.o: tab.c
$(CC) -c tab.c
# Remove the follwing 2 lines if your system has getopt.
getopt.o: getopt.c
$(CC) -c getopt.c