mirror of
https://github.com/marketideas/qasm.git
synced 2025-01-01 02:35:39 +00:00
16 lines
162 B
Makefile
16 lines
162 B
Makefile
|
.SILENT:
|
||
|
export CC=gcc
|
||
|
export CXX=g++
|
||
|
|
||
|
.PHONY: clean
|
||
|
|
||
|
all: nufx
|
||
|
|
||
|
nufx:
|
||
|
-mkdir -p ./build
|
||
|
cd ./build && cmake ..
|
||
|
cd ./build && $(MAKE)
|
||
|
|
||
|
clean:
|
||
|
-rm -rf ./build
|