source: trunk/minix/commands/mined/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: 305 bytes
Line 
1# Makefile for mined
2
3CC = exec cc
4
5CFLAGS = -O -wo -D_MINIX -D_POSIX_SOURCE
6
7OBJ = mined1.o mined2.o
8
9all: mined
10
11mined: $(OBJ)
12 $(CC) -i -o $@ $(OBJ)
13 install -S 64k $@
14
15install: /usr/bin/mined
16
17/usr/bin/mined: mined
18 install -cs -o bin mined $@
19
20$(OBJ): mined.h
21
22clean:
23 rm -f mined *.o *.s core *.bak
Note: See TracBrowser for help on using the repository browser.