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

  1.  
  2. # Makefile for 680x0 Linux mm source directory
  3. #
  4. # Copyright 1993 by Hamish Macdonald
  5. #
  6. # This file is subject to the terms and conditions of the GNU General Public
  7. # License.  See the file "README.legal" in the main directory of this archive
  8. # for more details.
  9.  
  10. include ../MakeVars
  11.  
  12. OBJS    = memory.o swap.o mmap.o kmalloc.o vmalloc.o
  13.  
  14. mm.o: $(OBJS)
  15.     $(LD) -r -o mm.o $(OBJS)
  16.  
  17. dep:
  18.     $(CPP) -M $(INCFLAGS) *.c > .depend
  19.  
  20. #
  21. # include a dependency file if one exists
  22. #
  23. ifeq (.depend,$(wildcard .depend))
  24. include .depend
  25. endif
  26.