home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / drdobbs / 1991 / 08 / xscheme / makefile.ztc < prev    next >
Makefile  |  1991-05-21  |  481b  |  20 lines

  1. # Makefile for Zortech C
  2.  
  3. OBJ1=xscheme.obj xsdmem.obj xsimage.obj xsio.obj xsobj.obj \
  4. xsprint.obj xsread.obj xssym.obj xsfun1.obj xsfun2.obj xsmath.obj \
  5. msstuff.obj
  6.  
  7. OBJ2=xsinit.obj xscom.obj xsint.obj
  8.  
  9. CFLAGS=-ml -b -o -A -DZTC
  10.  
  11. .c.obj:
  12.     ztc -c $(CFLAGS) $<
  13.  
  14. xs_ztc.exe:    $(OBJ1) $(OBJ2) xsftab.obj
  15.     ztc -oxs_ztc $(OBJ1) $(OBJ2) xsftab.obj
  16.  
  17. $(OBJ1):    xscheme.h xsproto.h
  18. $(OBJ2):    xscheme.h xsproto.h xsbcode.h
  19. xsftab.obj:    xscheme.h xsproto.h osdefs.h osptrs.h
  20.