This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/ext/picotcp/test/Makefile

11 lines
294 B
Makefile

CC=gcc
CFLAGS=-ggdb -I../build/include/ -L../build/lib/ -lpicotcp -lvdeplug
APPNAME=test_tftp_app_client
.PHONY: clean
all: test_tftp_app_client
test_tftp_app_client: test_tftp_app_client.o
$(CC) -o test_tftp_app_client ../build/modules/pico_dev_vde.o $^ $(CFLAGS)
clean:
rm -f ${APPNAME}.o