1# Special rules for making 32-bit and 64-bit binaries on a sunos5 x86 box
2all: i386/top amd64/top
3	-cp -f /usr/lib/isaexec top
4
5i386/top: $(SRC) $(INC)
6	cd i386; $(MAKE) -f ../Makefile VPATH=.. srcdir=.. \
7		BINARY=./top ARCHFLAG= top
8
9amd64/top: $(SRC) $(INC)
10	cd amd64; $(MAKE) -f ../Makefile VPATH=.. srcdir=.. BINARY=./top top
11