pci: don't do sanity check for missing pci bus, the check can misfire.
[minix.git] / commands / sh / Makefile
blob90ecd7031bc2ceb8ee8b6ce6c0336d8d9aeca203
1 # Makefile for sh
3 CFLAGS = -O -D_MINIX -D_POSIX_SOURCE -wa
4 LDFLAGS = -i
5 CC = exec cc
7 OBJ = sh1.o sh2.o sh3.o sh4.o sh5.o sh6.o
9 all: sh
11 sh: $(OBJ)
12 cc $(LDFLAGS) -o $@ $(OBJ)
13 install -S 11kw sh
15 install: /usr/bin/msh
17 /usr/bin/msh: sh
18 install -cs -o bin $? $@
20 #/usr/bin/sh: /usr/bin/msh
21 # install -l h $? $@
23 #/bin/sh: /usr/bin/msh
24 # install -l h -cs $? $@
26 $(OBJ): sh.h
28 clean:
29 rm -f sh *.o *.bak core