SVN / public / code / vorlesung-01 / Makefile

Revision 154
Date2026-04-21T15:58:54+02:00
Committerhb1003
Download
all: clean checkstyle compile test

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

test:
	./PrimeTest

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

clean:
	rm -f a.out PrimeMain PrimeTest