Revision de762d2b857da7914ddfdc7604d21fca59371add authored by Daniel A. Wagenaar on 01 April 2018, 22:22:01 UTC, committed by Daniel A. Wagenaar on 01 April 2018, 22:22:01 UTC
1 parent eb507ae
Raw File
Makefile
all: SBEMVIEWER

clean:
	+rm -rf build

SBEMVIEWER: PREP
	+make -C build

debug: PREP
	+make -C build debug

PREP:
	mkdir -p build
	( cd build; qmake ../src/sbemviewer.pro )

.PHONY: PREP SBEMVIEWER clean
back to top