1
2NODOCS = true
3
4OTHER_TARGETS = build-here
5OTHER_CLEAN = clean-here
6
7###### don't modify anything below this line!
8BASE = $(shell pwd | sed 's@\(.*\)/seda.*$$@\1/seda@' )
9include $(BASE)/Makefile.include
10
11build-here: Makefile.here my-build-here
12
13Makefile.here: configure Makefile.here.in
14	./configure
15
16configure: configure.in
17	autoconf
18
19my-build-here:
20	$(MAKE) -f Makefile.here all
21
22clean-here:
23	if [ -f Makefile.here ]; then $(MAKE) -f Makefile.here clean; fi
24	@rm -f Makefile.here config.cache config.status config.log
25