# This is a quick and dirty makefile which doesn't use any
# of the real features of "make" - anyway, it works.
all:
	cpp gdfs.S -o gdfs.s
	as -o gdfs.o gdfs.s
	ld -Ttext 0x0 -s --oformat binary -o image.raw gdfs.o

clean:
	rm -f *.o *.s image.raw
