source: trunk/minix/commands/autil/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: 432 bytes
Line 
1# Makefile for commands/autil
2
3CC = exec cc
4CFLAGS = -I. -D_MINIX -D_POSIX_SOURCE -wo
5CCLD = $(CC) -i $(CFLAGS)
6
7all: anm asize
8
9anm: anm.c rd.c rd_arhdr.c rd_bytes.c rd_unsig2.c
10 $(CCLD) -o $@ $?
11 install -S 32kw $@
12
13asize: asize.c
14 $(CCLD) -o $@ $?
15 install -S 4kw $@
16
17install: /usr/bin/anm /usr/bin/asize
18
19/usr/bin/anm: anm
20 install -cs -o bin $? $@
21
22/usr/bin/asize: asize
23 install -cs -o bin $? $@
24
25clean:
26 rm -f anm asize core
Note: See TracBrowser for help on using the repository browser.