2005-04-21 16:53:53 +02:00
|
|
|
# Makefile for mined
|
|
|
|
|
2005-09-07 10:43:25 +02:00
|
|
|
CC = exec cc
|
|
|
|
|
2005-04-21 16:53:53 +02:00
|
|
|
CFLAGS = -O -wo -D_MINIX -D_POSIX_SOURCE
|
|
|
|
|
|
|
|
OBJ = mined1.o mined2.o
|
|
|
|
|
|
|
|
all: mined
|
|
|
|
|
|
|
|
mined: $(OBJ)
|
|
|
|
$(CC) -i -o $@ $(OBJ)
|
|
|
|
install -S 64k $@
|
|
|
|
|
|
|
|
install: /usr/bin/mined
|
|
|
|
|
|
|
|
/usr/bin/mined: mined
|
|
|
|
install -cs -o bin mined $@
|
|
|
|
|
|
|
|
$(OBJ): mined.h
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f mined *.o *.s core *.bak
|