home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / timer / msec_12 / makefile.tcc < prev    next >
Encoding:
Makefile  |  1991-12-11  |  433 b   |  18 lines

  1. # makefile for either Borland's brain-dead make
  2. # (as provided with Turbo C) or Ndmake
  3. # For BCC and/or MAKE v3.6, use MAKEFILE.BCC
  4.  
  5. OBJS = testtime.obj timer.obj
  6. MODEL = s
  7. TCINC = d:\;c:\usr\tc\include
  8. TCLIB = d:\;c:\usr\tc\lib
  9.  
  10. testtime.exe:    $(OBJS)
  11.     tcc -o$*.exe $(CFLAGS) -m$(MODEL) -I$(TCINC) -L$(TCLIB) $(OBJS)
  12.  
  13. timer.c:    timer.h
  14. testtime.c:    timer.h timer.c
  15.  
  16. .c.obj:
  17.     tcc -c $(CFLAGS) -m$(MODEL) -I$(TCINC) $<
  18.