# The actual distributed binary has been created using
# diet-libc to avoid the huge static size imposed by
# glibc.
#CC = powerpc-linux-gcc
CC = diet-ppc
STRIP = powerpc-linux-strip
CFLAGS = -O2 # -static

all: lazy_umount

lazy_umount: lazy_umount.c
	$(CC) $(CFLAGS) -o lazy_umount lazy_umount.c
	$(STRIP) lazy_umount

clean:
	rm -f lazy_umount lazy_umount.o
