move executable to subdir
This commit is contained in:
parent
874187f252
commit
cf119694c1
4 changed files with 26 additions and 8 deletions
17
exe/Makefile
Normal file
17
exe/Makefile
Normal file
|
@ -0,0 +1,17 @@
|
|||
all: test
|
||||
|
||||
.PHONY: lib
|
||||
lib:
|
||||
make -C .. lib
|
||||
|
||||
depends/quox: lib
|
||||
mkdir -p depends
|
||||
ln -sf ../../build/ttc depends/quox
|
||||
|
||||
.PHONY: test
|
||||
exe: depends/quox
|
||||
idris2 --build quox-exe.ipkg
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -rf build depends
|
Loading…
Add table
Add a link
Reference in a new issue