home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume40 / bin2ascii / part01 / Makefile < prev   
Encoding:
Makefile  |  1993-11-01  |  268 b   |  15 lines

  1. DEFINES = 
  2.  
  3. # Your favorite C compiler
  4. #CC    = gcc
  5. CC    = cc
  6.  
  7. # The flags your favorite C compiler requires to work.
  8. #CFLAGS  = -O -I/usr/X386/include -DSVR4 -DSYSV386 ${DEFINES}
  9. CFLAGS  = -O ${DEFINES}
  10.  
  11. all:    bin2ascii
  12.  
  13. bin2ascii:    bin2ascii.o
  14.     $(CC) -o $@ bin2ascii.o -lm
  15.