mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
11 lines
107 B
Makefile
11 lines
107 B
Makefile
|
|
SHELL := /bin/bash
|
||
|
|
|
||
|
|
.PHONY: all
|
||
|
|
|
||
|
|
all:
|
||
|
|
pushd src && make && popd
|
||
|
|
|
||
|
|
clean:
|
||
|
|
pushd src && make clean && popd
|
||
|
|
|