home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / linux / atari / source / source.lzh / atari-linux-0.01pl3 / tools / Makefile < prev    next >
Encoding:
Makefile  |  1994-06-05  |  704 b   |  30 lines

  1. # Makefile for Amiga Linux tools source directory
  2. #
  3. # Copyright 1993 by Hamish Macdonald
  4. #
  5. # This file is subject to the terms and conditions of the GNU General Public
  6. # License.  See the file "README.legal" in the main directory of this archive
  7. # for more details.
  8.  
  9. # Include the make variables (CC, etc...)
  10. #
  11. include ../MakeVars
  12.  
  13. makeinit: makeinit.c
  14.     $(HOSTCC) $(HOSTFLAGS) -o $@ $<
  15.  
  16. filetodata: filetodata.c
  17.     $(HOSTCC) $(HOSTFLAGS) -o $@ $<
  18.  
  19. ftran: ftran.c
  20.     $(HOSTCC) -o $@ $<
  21.  
  22. ftran.linux: ftran.c
  23.     $(CC) -nostdlib $(CFLAGS) -o $@ ../init/crt0.o ftran.c ../lib/lib.a
  24.  
  25. cnv_defkeymap: cnv_defkeymap.c
  26.     $(HOSTCC) $(HOSTFLAGS) -o $@ $<
  27.  
  28. clean:
  29.     $(RM) makeinit filetodata ftran ftran.linux cnv_defkeymap
  30.