# DMakefile for Amiga Linux directory 'amiga'
#
# Copyright 1992 by Greg Harp
#
# 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.

CC=gcc
CCFLAGS=-nostdlib -Wall -Ilinux:src/include -m68020
LINK=gcc:compilers/amiga/2.2.2/ld

all: chipregs.o

chipregs.o: chipregs.c linux:src/include/amiga/chipregs.h
	$(CC) $(CCFLAGS) -o chipregs.o -c chipregs.c

clean:
	-delete linux:src/amiga/*.o
