blob: fbe4751cfea8ed52bd9f6f8c7e67ef664aed3df7 [file] [log] [blame] [raw]
CC = gcc
CFLAGS = -Wall -O1 -g
LIBS = -lfuse -lhivex
mount.hive: mount.hive.o
$(CC) $^ -o $@ $(LIBS)
clean:
rm -f mount.hive *.o