home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / TIMEXSRC.ZIP / TIMEXBA < prev    next >
Text File  |  1990-03-29  |  1KB  |  41 lines

  1. # Makefile for TIMEXBA, the Timex Background Agent
  2. #     February 1990, Mark E. Mallett, Personal Workstation Magazine
  3.  
  4. CFLAGS= -AL -G2sw -W3 -DHAVE_STRICMP
  5.  
  6. .c.obj:
  7.    cl /c $(CFLAGS) $*.c
  8.  
  9. ba_main.obj:    ba_main.c timex.h ba_timex.h
  10.  
  11. ba_req.obj:     ba_req.c timex.h ba_timex.h
  12.  
  13. ba_evctl.obj:   ba_evctl.c timex.h ba_timex.h
  14.  
  15. ba_db.obj:      ba_db.c timex.h ba_timex.h evpack.h
  16.  
  17. ba_misc.obj:    ba_misc.c timex.h ba_timex.h
  18.  
  19. ba_data.obj:    ba_data.c timex.h ba_timex.h
  20.  
  21. evpack.obj:     evpack.c timex.h
  22.  
  23. errhand.obj:    errhand.c errhand.h
  24.  
  25. misc.obj:       misc.c timex.h
  26.  
  27. string.obj:     string.c timex.h
  28.  
  29. tmclock.obj:    tmclock.c
  30.  
  31. timexba.exe:    ba_main.obj ba_req.obj ba_evctl.obj ba_db.obj \
  32.                 evpack.obj ba_misc.obj ba_data.obj \
  33.                 string.obj misc.obj \
  34.                 tmclock.obj
  35.     link ba_main+ba_req+ba_evctl+ba_db+ba_misc+ba_data+string+\
  36.         evpack+misc+errhand+tmclock,\
  37.         timexba/align:16,NUL,os2,timexba
  38.  
  39.