# Makefile for make (!)

CC = mcc
CFLAGS = -O -Dunix -D_MINIX -D_POSIX_SOURCE

OBJ =	check.o input.o macro.o main.o make.o reader.o rules.o archive.o

all:	make

make :	$(OBJ)
	$(CC) -o make -S 32kw $(OBJ)

$(OBJ): h.h

clean:
	rm -f *.o core make
