minix/commands/make/Makefile
2005-06-01 11:14:08 +00:00

22 lines
336 B
Makefile
Executable file

# Makefile for make (!)
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) -i -o make $(OBJ)
install -S 300k make
install: /usr/bin/make
/usr/bin/make: make
install -cs -o bin make $@
$(OBJ): h.h
clean:
rm -f *.o *.bak core make