ifndef TOPDIR
	TOPDIR = ../
endif
ifndef SRCDIR
	SRCDIR = ../src/
endif
ifndef TARGET
	TARGET = ../src/linux-2.4.x/linux.bin
endif
all:
	make -C $(SRCDIR) dep
	make -C $(SRCDIR)
	cp $(TARGET) $(TOPDIR)bin/linux.bin -rf
clean:
	make -C $(SRCDIR) clean
