mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-15 19:28:47 +00:00
10 lines
107 B
Makefile
10 lines
107 B
Makefile
SHELL := /bin/bash
|
|
|
|
.PHONY: all
|
|
|
|
all:
|
|
pushd src && make && popd
|
|
|
|
clean:
|
|
pushd src && make clean && popd
|
|
|