zlog/Makefile
Tu Duong Quyet ec179780d1 Update gitignore file
Refactor README
Change makefile as Makefile
2024-04-11 14:16:08 +08:00

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