home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / LINGU11A / MAKEFILE < prev    next >
Text File  |  1993-03-11  |  614b  |  41 lines

  1. CC=bcc
  2. LINK=tlink
  3. CC_OPTS=-c -ml -w -d -O
  4. LINK_OPTS=/c /x
  5.  
  6. ## Libraries:
  7. OBJS=c0l
  8. LIBS=cl
  9.  
  10. all: lingua.exe lingdemo.exe
  11.  
  12. lingua.exe: lingua.obj
  13.     $(LINK) $(LINK_OPTS) @&&!
  14. $(OBJS)+
  15. lingua.obj
  16. $*, ,$(LIBS)
  17. !
  18.  
  19. lingdemo.exe: lingdemo.obj ui_text.obj
  20.     $(LINK) $(LINK_OPTS) @&&!
  21. $(OBJS)+
  22. lingdemo.obj+
  23. ui_text.obj
  24. $*, ,$(LIBS)
  25. !
  26.  
  27. lingua.obj: lingua.c
  28.     $(CC) $(CC_OPTS) lingua.c
  29.  
  30. lingdemo.obj: lingdemo.c ui_text.h
  31.     $(CC) $(CC_OPTS) lingdemo.c
  32.  
  33. ui_text.obj: ui_text.c
  34.     $(CC) $(CC_OPTS) ui_text.c
  35.  
  36. ui_text.h: english.txt
  37.     lingua english
  38.     lingua francais
  39.     lingua deutsch
  40.     lingua nl
  41.