home *** CD-ROM | disk | FTP | other *** search
/ Windows Shareware GOLD / NuclearComputingVol3No1.cdr / _bbs3 / f1530.zip / CLRTEST < prev    next >
Text File  |  1991-08-25  |  749b  |  31 lines

  1. #--------------------
  2. # Makefile for CLRTEST.EXE - Color selection custom control test program
  3. #
  4. # (C) Scott Gourley/Clickon Software, 1991.
  5. #--------------------
  6.  
  7. MODEL=S
  8.  
  9. CNODEBFLAGS= -c -Gsw -Ow -Zp -W3 -A$(MODEL)
  10. CDEBFLAGS= -c -Gsw -Od -Zp -Zi -W3 -A$(MODEL)
  11. CFLAGS=$(CNODEBFLAGS)
  12. CDLLFLAGS= $(CFLAGS) -Aw
  13.  
  14. LNODEBFLAGS=/nod /align:16
  15. LDEBFLAGS=/nod /align:16 /CO
  16. LFLAGS=$(LNODEBFLAGS)
  17.  
  18. LIBS=$(MODEL)libcew libw
  19. DLLLIBS=$(MODEL)dllcew libw
  20.  
  21. OBJS = clrtest.obj
  22.  
  23. head : clrtest.exe
  24.  
  25. clrtest.exe : $(OBJS) clrtest.def clrtest.res clrtest.ico
  26.     link $(LFLAGS) $(OBJS), clrtest, nul.map, $(LIBS), clrtest
  27.     rc clrtest.res
  28.  
  29. clrtest.res : clrtest.rc clrtest.dlg clrtestd.h clrtest.ico
  30. clrtest.c   : clrtest.h clrctrl.h
  31.