mirror of https://github.com/k3s-io/k3s
14 lines
158 B
Makefile
14 lines
158 B
Makefile
![]() |
pause: pause.asm
|
||
|
ifneq ($(shell uname), Linux)
|
||
|
echo "Must build on Linux"
|
||
|
exit 1
|
||
|
else
|
||
|
nasm -o $@ $<
|
||
|
chmod +x pause
|
||
|
endif
|
||
|
|
||
|
all: pause
|
||
|
|
||
|
clean:
|
||
|
rm -f pause
|