home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / windows / graphite / makefile < prev    next >
Encoding:
Makefile  |  1993-01-30  |  396 b   |  22 lines

  1. .AUTODEPEND
  2.  
  3. MODEL = l
  4. NAME = GRAPHITE
  5. OBJS = GRAPHITE.obj
  6. #Change LIB to the directory in which your TC++ libraries are located.
  7. LIB = c:\bc\lib
  8.  
  9. $(NAME).dll: $(OBJS) tdvideo.def
  10.  
  11.     tlink @&&~
  12. /Twd /s /n /c $(LIB)\c0d$(MODEL) $(OBJS)
  13. $&,, $(LIB)\cw$(MODEL) $(LIB)\c$(MODEL) $(LIB)\import
  14. tdvideo.def
  15. $&
  16. ~
  17.     rc -30 $(NAME).DLL
  18.  
  19. .c.obj :
  20.     bcc -d -c -m$(MODEL) -W $&.c
  21.  
  22.