20 lines
349 B
Makefile
20 lines
349 B
Makefile
.PHONY: all src test clean
|
|
|
|
all: src
|
|
|
|
submodule:
|
|
git submodule init
|
|
git submodule update
|
|
cd deps/sgx_protect_file && make
|
|
cd deps/sefs/sefs-fuse && make
|
|
|
|
src:
|
|
@$(MAKE) --no-print-directory -C src
|
|
|
|
test:
|
|
@$(MAKE) --no-print-directory -C test test
|
|
|
|
clean:
|
|
@$(MAKE) --no-print-directory -C src clean
|
|
@$(MAKE) --no-print-directory -C test clean
|