source: trunk/minix/commands/make/Makefile@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 348 bytes
Line 
1# Makefile for make (!)
2
3CFLAGS = -O -Dunix -D_MINIX -D_POSIX_SOURCE
4CC = exec cc
5
6OBJ = check.o input.o macro.o main.o make.o reader.o rules.o archive.o
7
8all: make
9
10make : $(OBJ)
11 $(CC) -i -o make $(OBJ)
12 install -S 330k make
13
14install: /usr/bin/make
15
16/usr/bin/make: make
17 install -c -o bin make $@
18
19$(OBJ): h.h
20
21clean:
22 rm -f *.o *.bak core make
Note: See TracBrowser for help on using the repository browser.