home *** CD-ROM | disk | FTP | other *** search
/ Total Destruction / Total_Destruction.iso / addons / Lccwin32.exe / Lccwin32 / lccpub / demo / hellowin / makefile < prev   
Encoding:
Makefile  |  1997-01-28  |  185 b   |  11 lines

  1. # Makefile for hellowin 
  2. CC=..\..\bin\lcc
  3. CFLAGS    =    -O -g2 -A -I..\..\include -DWIN32
  4.  
  5. OBJS    =    hellowin.obj 
  6.  
  7. hellowin.exe:    $(OBJS)
  8.     ..\..\bin\lcclnk -o hellowin.exe $(OBJS) 
  9.  
  10.  
  11.