home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / contrib / sblaster / makefile < prev    next >
Encoding:
Makefile  |  1993-11-22  |  196 b   |  12 lines

  1. sb: sb.c sb.h makefile
  2.     gcc -Wall sb.c -o sb -lpc
  3.     coff2exe sb
  4.  
  5. proto:
  6.     $(RM) -f proto.h
  7.     touch proto.h
  8.     gcc -E sb.c > sb.cp
  9.     cproto -f 4 -m _PROTO_ -d -p -e sb.cp > proto.h
  10.     rm sb.cp
  11.  
  12.