schwehr/libais

View on GitHub
src/Makefile-custom

Summary

Maintainability
Test Coverage
# -*- makefile -*-
all:
    (cd libais && $(MAKE) -f Makefile-custom all)
    (cd test && $(MAKE) -f Makefile-custom all)

clean:
    (cd libais && $(MAKE) -f Makefile-custom clean)
    (cd test && $(MAKE) -f Makefile-custom clean)

.PHONY: test
test:
    (cd libais && $(MAKE) -f Makefile-custom)
    (cd test && $(MAKE) -f Makefile-custom test)