home *** CD-ROM | disk | FTP | other *** search
/ Photo CD Demo 1 / Demo.bin / bit_blt / amiga / makefile.old < prev    next >
Makefile  |  1987-04-24  |  451b  |  22 lines

  1. OBJECTS = blitlab.o bits.o initialize.o render.o gadgets.o mem.o parse.o \
  2.           math.o doblit.o
  3.  
  4. .c.o:
  5.     cc -a +istructures.b $*.c
  6.     as -ZAP $*.asm
  7.  
  8. all: blit
  9.  
  10. blit: $(OBJECTS)
  11.     ln -o blitlab $(OBJECTS) -lc
  12.  
  13. $(OBJECTS): structures.b
  14.  
  15. structures.b: structures.h
  16.     cc -a +hstructures.b structures.h
  17.     delete structures.asm
  18.  
  19. count:
  20.     wc makefile readme structures.h bits.c blitlab.c initialize.c \
  21.     render.c gadgets.c mem.c parse.c math.c doblit.c
  22.