/
Genesis-1.0p36-DEV/
Genesis-1.0p36-DEV/bin/
Genesis-1.0p36-DEV/doc/
Genesis-1.0p36-DEV/etc/
Genesis-1.0p36-DEV/src/data/
# Cold driver

CFLAGS=@CFLAGS@ -I../include
LDFLAGS=@LDFLAGS@
LIBS=@LIBS@
CC=@CC@

SYS=@SYS@
CPU=@CPU@
VENDOR=@VENDOR@

prefix=@prefix@
BINDIR=$(prefix)/bin
SRCDIR=$(prefix)/src
MODULES=$(SRCDIR)/modules

VERSION=@VERSION@

## we don't need any rules as 'make xxxx.o' will still function correctly,
## and the builds are usually called from ../Makefile anyway.

## Just add the standard rules.

all:

clean:
	rm -f *~ *.BAK *.bak

scrub:
	rm -f *.o *~ *.BAK *.bak

makefile:
	@cd $(prefix); configure -q

install: all

depend:
#	@makedepend -- $(CFLAGS) -- $(SRCS) > /dev/null 2>&1
#	@rm Makefile.bak

lint:
	$(LINT) -u $(SRCS)

patchable: scrub
	@chmod -f u+w Makefile
	@echo "all:" > Makefile
	@echo " @echo \"** Invalid Makefile! **\"" >> Makefile
	@echo " @echo \"** running the configure script ... **\"" >> Makefile
	@echo " @cd ../..; configure" >> Makefile

reconfig:
	cd ..; make reconfig