# $Id: Makefile,v 1.13 2002/04/29 06:37:32 nez Exp $ all: test shell realm test: test.c gcc -c test.c ld -o test.bin test.o realm: realm.c gcc -c realm.c ld -o realm.bin realm.o shell: shell.c gcc -c shell.c ld -o shell.bin shell.o ../lib/lib.so clean: (rm -f *.o *.bin *.core)