17 lines
332 B
Makefile
17 lines
332 B
Makefile
.PHONY: all
|
|
all: minimal morse perf test test-kec
|
|
|
|
minimal: Map.hpp minimal.cpp
|
|
g++ minimal.cpp -o minimal
|
|
|
|
morse: Map.hpp morseex.cpp
|
|
g++ morseex.cpp -o morse
|
|
|
|
perf: Map.hpp test-scaling.cpp
|
|
g++ test-scaling.cpp -o perf
|
|
|
|
test: Map.hpp test.cpp
|
|
g++ test.cpp -o test
|
|
|
|
test-kec: Map.hpp test-kec.cpp
|
|
g++ test-kec.cpp -o test-kec
|