Add initial make infrastructure
This commit is contained in:
5
bench/config.mk
Normal file
5
bench/config.mk
Normal file
@@ -0,0 +1,5 @@
|
||||
BENCH_SOURCES = $(wildcard $(ATRIP_ROOT)/bench/test*.cxx)
|
||||
BENCH_TARGETS = $(patsubst %.cxx,%,$(BENCH_SOURCES))
|
||||
|
||||
bench-clean:
|
||||
-rm -v $(BENCH_TARGETS)
|
||||
6
bench/test_main.cxx
Normal file
6
bench/test_main.cxx
Normal file
@@ -0,0 +1,6 @@
|
||||
#include <iostream>
|
||||
|
||||
int main() {
|
||||
std::cout << "Hello world" << std::endl;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user