home *** CD-ROM | disk | FTP | other *** search
/ Total Destruction / Total_Destruction.iso / addons / Lccwin32.exe / Lccwin32 / lccpub / demo / toolbar / makefile next >
Encoding:
Makefile  |  1997-07-16  |  258 b   |  14 lines

  1. # Makefile for  toolbar
  2. CC=..\..\bin\lcc
  3. LIBS=version.lib
  4. CFLAGS    =    -O -g2 -I..\..\include
  5.  
  6. OBJS    =    toolbar.obj toolbar.res
  7.  
  8. toolbar.exe:    $(OBJS)
  9.     ..\..\bin\lcclnk -o toolbar.exe $(OBJS) $(LIBS)
  10.  
  11. toolbar.res: toolbar.rc
  12.     ..\..\bin\lrc toolbar.rc
  13.  
  14.