home *** CD-ROM | disk | FTP | other *** search
/ Total Destruction / Total_Destruction.iso / addons / Lccwin32.exe / Lccwin32 / lccpub / demo / hello / makefile < prev   
Encoding:
Makefile  |  1997-06-22  |  299 b   |  13 lines

  1. # Wedit Makefile for project J:\LCC\DEMO\HELLO\CMS\TEST
  2. CFLAGS=-Ij:\lcc\include -g2
  3. OBJS=\
  4.     hello.obj
  5.  
  6. TEST.exe:    $(OBJS)
  7.     j:\lcc\bin\lcclnk  -o hello.exe $(OBJS)
  8.  
  9. # Build j:\lcc\demo\hello\HELLO.C
  10. HELLO.obj: j:\lcc\demo\hello\hello.c
  11.     j:\lcc\bin\lcc $(CFLAGS) j:\lcc\demo\hello\hello.c
  12.  
  13.