mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-17 20:02:53 +08:00
9 lines
73 B
Makefile
9 lines
73 B
Makefile
CFLAGS ?= -g
|
|
|
|
all: hello-mio
|
|
|
|
clean:
|
|
rm -f hello-mio
|
|
|
|
.PHONY: all clean
|