# Makefile for 680x0 Linux amiga source directory
#
# Copyright 1993 by Hamish Macdonald
#
# This file is subject to the terms and conditions of the GNU General Public
# License.  See the file "README.legal" in the main directory of this archive
# for more details.

include ../MakeVars

OBJS	= config.o amikeyb.o amiints.o amicon.o font.o amipart.o

amiga.o: $(OBJS)
	$(LD) -r -o amiga.o $(OBJS)

clean:
	$(RM) $(RMFLAGS) *.o *.a

dep:
	$(CPP) -M $(INCFLAGS) *.c > .depend

#
# include a dependency file if one exists
#
ifeq (.depend,$(wildcard .depend))
include .depend
endif
