OpenMC/Makefile

14 lines
220 B
Makefile

all:
mkdir -p build
cmake -H. -Bbuild
make -s -C build
clean:
make -s -C build clean
distclean:
rm -fr build
test:
make -s -C build test
install:
make -s -C build install
.PHONY: all clean distclean test install