home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / misc / lingua12 / makefile < prev    next >
Makefile  |  1993-04-26  |  583b  |  42 lines

  1. CC=bcc
  2. LINK=tlink
  3. CC_OPTS=-c -ml -w -d -O -A -P-c
  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 lingua.h
  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. ui_text.h: english.txt
  28.     lingua english
  29.     lingua francais
  30.     lingua deutsch
  31.     lingua nl
  32.  
  33. lingdemo.c: ui_text.h
  34.     lingua english
  35.     lingua francais
  36.     lingua deutsch
  37.     lingua nl
  38.  
  39. .c.obj:
  40.     $(CC) $(CC_OPTS) {$< }
  41.  
  42.