You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
421 B
Makefile
34 lines
421 B
Makefile
# Top level makefile, the real shit is at src/makefile
|
|
|
|
TARGETS=noopt 32bit
|
|
|
|
all:
|
|
cd src && $(MAKE) $@
|
|
|
|
install:
|
|
cd src && $(MAKE) $@
|
|
|
|
$(TARGETS):
|
|
cd src && $(MAKE) $@
|
|
|
|
doc:
|
|
cd doc && $(MAKE)
|
|
|
|
test:
|
|
cd test && $(MAKE)
|
|
|
|
TAGS:
|
|
find . -type f -name "*.[ch]" | xargs etags -
|
|
|
|
clean:
|
|
cd src && $(MAKE) $@
|
|
cd test && $(MAKE) $@
|
|
cd doc && $(MAKE) $@
|
|
rm -f TAGS
|
|
|
|
distclean: clean
|
|
|
|
dummy:
|
|
|
|
.PHONY: doc install test TAGS
|