13 lines
193 B
Makefile
13 lines
193 B
Makefile
# Makefile for make! (Minix ST)
|
|
|
|
CFLAGS = -O -Dunix
|
|
|
|
OBJS = check.o input.o macro.o main.o \
|
|
make.o reader.o rules.o
|
|
|
|
make : $(OBJS)
|
|
$(CC) -o make $(OBJS)
|
|
chmem =20000 make
|
|
|
|
$(OBJS): h.h
|