home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 58 / af058sub.adf / fmsdisk2.lha / src / DMakefile next >
Makefile  |  1990-04-16  |  526b  |  22 lines

  1.  
  2. #   Since not using normal startup, BSS will not be zerod, and cannot
  3. #   make program resident (can't anyway because there is no way to
  4. #   retrieve the data base register in a residentable program)
  5.  
  6. OD=   dtmp:fms/
  7. CFLAGS=
  8. EXE=
  9. LIBS= lib:lc.lib lib:amiga.lib
  10.  
  11. all: $(EXE)fmsdisk.device
  12.  
  13. $(EXE)fmsdisk.device : $(OD)tag.o $(OD)fms.o
  14.     dcc %(right) -o %(left) -l0 -lc -lamiga -v -s
  15.  
  16. $(OD)tag.o : tag.asm
  17.     asm -Iinclude:/asminclude/ -o%(left) %(right)
  18.  
  19. $(OD)fms.o : fms.c
  20.     dcc -c $(CFLAGS) -o %(left) %(right) -md -v
  21.  
  22.