SVN / public / code / vorlesung-02 / Makefile

Revision 997
Date2026-04-28T16:11:40+02:00
Committerhb1003
Download
all: clean checkstyle compile test

compile:
	clang++ -o PrimeMain PrimeMain.cpp Prime.cpp
	clang++ -o PrimeTest PrimeTest.cpp Prime.cpp -lgtest

test:
	./PrimeTest

checkstyle:
	clang-format-18 --dry-run -Werror *.cpp

clean:
	rm -f a.out PrimeMain PrimeTest