# Makefile for 680x0 Linux atari 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 atakeyb.o ataints.o atacon.o font_8x16.o font_8x8.o \
          atapart.o stdma.o atasound.o joystick.o

atari.o: $(OBJS)
	$(LD) -r -o atari.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
