home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a039 / 3.ddi / WINSAMP.ZIP / BCMAKE next >
Encoding:
Text File  |  1991-03-11  |  612 b   |  30 lines

  1. # Turbo C++ Makefile
  2.  
  3. .SWAP
  4. .AUTODEPEND
  5.  
  6. MODEL = l
  7.  
  8. # Change the following to the directories that contain your libraries and
  9. # header files, respectively.
  10. LIB = f:\tc\lib
  11. INCLUDE = f:\tc\include
  12.  
  13. OBJS = wfonedex.obj winmain.obj dialogs.obj
  14.  
  15. .c.obj :
  16.     bcc -c -m$(MODEL) -W -I$(INCLUDE) $&.c
  17.  
  18. wfonedex.exe: $(OBJS) wfonedex.res wfonedex.def
  19.     tlink @&&!
  20. /Tw /n $(LIB)\c0w$(MODEL) $(OBJS)
  21. $&
  22. $&
  23. pxengwin $(LIB)\import $(LIB)\cwin$(MODEL) $(LIB)\math$(MODEL) $(LIB)\c$(MODEL) 
  24. wfonedex.def
  25. !
  26.     rc $&.res $&.exe
  27.  
  28. wfonedex.res : wfonedex.rc wfonerc.h
  29.     rc -r -i$(INCLUDE) $&.rc
  30.