mirror of
https://github.com/LuckfoxTECH/luckfox-pico.git
synced 2026-01-18 03:28:19 +01:00
12 lines
287 B
Makefile
12 lines
287 B
Makefile
# Rockchip sample Makefile
|
|
|
|
all:
|
|
@$(SAMPLE_CC) $(SAMPLE_CFLAGS) sample_ai.c -o sample_ai $(LD_FLAGS)
|
|
@$(SAMPLE_CC) $(SAMPLE_CFLAGS) sample_ai_aenc.c -o sample_ai_aenc $(LD_FLAGS)
|
|
|
|
install:
|
|
@mv -f sample_ai sample_ai_aenc $(SAMPLE_OUT_DIR)/bin
|
|
|
|
clean:
|
|
@rm -f sample_ai sample_ai_aenc
|