home *** CD-ROM | disk | FTP | other *** search
/ BUG 4 / BUGCD1997_05.BIN / aplic / clip4win / clip4win.exe / C4W30E.HUF / SOURCE / APP.RMK < prev    next >
Text File  |  1995-05-03  |  468b  |  36 lines

  1. APP = app
  2.  
  3. .prg.obj:
  4.     clipper $< /n /w
  5.  
  6. #ifdef OPTLINK
  7. SEG =
  8. #else
  9. SEG = /se:800
  10. #endif
  11.  
  12. #ifdef RC
  13. XRC = rc
  14. #else
  15.  
  16. #ifdef BRC
  17. XRC = brc
  18. #else
  19. XRC = rem
  20. #endif
  21.  
  22. #endif
  23.  
  24. #ifdef BLINKER
  25. $(APP).exe:   $(APP).obj
  26.         blinker fi $(APP) lib clip4win deffile $(APP).def
  27.         $(XRC) -k $(APP)
  28. #else
  29. $(APP).exe:   $(APP).obj
  30.         link $(SEG) $(APP),,nul,clip4win,$(APP).def
  31.         $(XRC) -k $(APP)
  32. #endif
  33.  
  34. $(APP).obj:   $(APP).prg
  35.  
  36.