mirror of
https://github.com/micropython/micropython.git
synced 2024-07-26 18:26:56 +01:00
9 lines
200 B
Makefile
9 lines
200 B
Makefile
MPTOP = ../..
|
|
CFLAGS = -std=c99 -I. -I$(MPTOP) -DNO_QSTR
|
|
LDFLAGS = -L.
|
|
|
|
hello-embed: hello-embed.o -lmicropython
|
|
|
|
-lmicropython:
|
|
$(MAKE) -f $(MPTOP)/examples/embedding/Makefile.upylib MPTOP=$(MPTOP)
|