home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume11 / tab / part01 / Makefile < prev    next >
Makefile  |  1990-03-10  |  404b  |  18 lines

  1. # Makefile for tab.  There are only two changes that need to be made depending
  2. # on whether or not your system has getopt.
  3. CC = cc -O
  4. PROG = tab
  5.  
  6. # Remove getopt.o from the following line if your system has getopt.
  7. OBJ = tab.o getopt.o
  8.  
  9. $(PROG): $(OBJ)
  10.     $(CC) -o $(PROG) $(OBJ)
  11.  
  12. tab.o: tab.c
  13.     $(CC) -c tab.c
  14.  
  15. # Remove the follwing 2 lines if your system has getopt.
  16. getopt.o: getopt.c
  17.     $(CC) -c getopt.c
  18.