Makefile (237B)
1 .PHONY: all build clean test 2 3 all: build test 4 5 include config.mk 6 7 clean: 8 rm -fr $(BIN) $(LIB) $(OBJ) 9 10 build: libriot-build brzeszczot-build 11 12 test: libriot-test brzeszczot-test 13 14 include libriot/makefile.mk 15 include brzeszczot/makefile.mk