source: trunk/minix/commands/de/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: 323 bytes
Line 
1# Makefile for de
2
3CC = exec cc
4CFLAGS = -O -D_MINIX -D_POSIX_SOURCE -D_POSIX_1_SOURCE=2
5
6all: de
7
8OBJS = de.o de_stdin.o de_stdout.o de_diskio.o de_recover.o
9
10de: $(OBJS)
11 $(CC) -i $(OBJS) -o de
12 install -S 4kw de
13
14install: /usr/bin/de
15
16/usr/bin/de: de
17 install -cs -o bin de $@
18
19$(OBJS): de.h
20
21clean:
22 rm -f *.bak *.o de
Note: See TracBrowser for help on using the repository browser.