M7350v7_en_gpl

This commit is contained in:
T
2024-09-09 08:59:52 +00:00
parent f75098198c
commit 46ba6f09ec
1372 changed files with 1231198 additions and 1184 deletions

View File

@ -0,0 +1,31 @@
INCS = -I$(TOP_USERS_DIR)/include
CFLAGS := -Os -Wall $(CFLAGS) $(INCS)
LDFLAGS += -g -s
#CC = $(CROSS_COMPILE)gcc
#AR = $(CROSS_COMPILE)ar
CFLAGS += -DCONFIG_IEEE80211W
#CFLAGS += -DCONFIG_NEW_SCRIPT
all: webs flash
webs: webs.o
$(CC) -o $@ $^ $(LDFLAGS)
cp -p ./webs ../bin/
flash: flash.o
$(CC) -o $@ $^ $(LDFLAGS)
cp -p ./flash ../bin/
clean:
rm -f *.o webs flash