Move Makefile to cmd/
This commit is contained in:
parent
8e948f95ed
commit
27d580fceb
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
.DS_Store
|
||||||
|
out/
|
||||||
8
Makefile
8
Makefile
@ -1,8 +0,0 @@
|
|||||||
all: out/stretch
|
|
||||||
|
|
||||||
out/stretch: signalsmith-stretch.h cmd/main.cpp cmd/util/*.h
|
|
||||||
mkdir -p out
|
|
||||||
g++ cmd/main.cpp -o out/stretch -std=c++11 -Ofast -g
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -rf out
|
|
||||||
8
cmd/Makefile
Normal file
8
cmd/Makefile
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
all: out/stretch
|
||||||
|
|
||||||
|
out/stretch: ../signalsmith-stretch.h main.cpp util/*.h
|
||||||
|
mkdir -p out
|
||||||
|
g++ main.cpp -o out/stretch -std=c++11 -Ofast -g
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf out
|
||||||
Loading…
x
Reference in New Issue
Block a user