TOPDIR=../../
include $(TOPDIR)Rules.make

all: pack

clean:
	rm -f pack *.o

pack.o: pack.c
	$(CC) pack.c -o $@ -c

pack: pack.o
	$(CC) -o $@ $^
