home *** CD-ROM | disk | FTP | other *** search
/ PC Extra Super CD 1998 January / PCPLUS131.iso / DJGPP / V2 / DJLSR201.ZIP / src / libc / stubs / makefile < prev   
Encoding:
Makefile  |  1995-11-19  |  286 b   |  17 lines

  1. # Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details
  2. .PHONY : none all
  3.  
  4. TOP = ..
  5.  
  6. all : makefile.oh
  7.     @rem.com
  8.  
  9. makefile.oh : $(TOP)/../../include/libc/stubs.h gen.exe makefile
  10.     gen.exe $<
  11.  
  12. gen.exe : gen.c
  13.     gcc -s gen.c -o gen.exe
  14.  
  15. clean :
  16.     -rm -f *.o makefile.oh
  17.