update script

This commit is contained in:
2023-07-31 17:34:43 +03:00
parent 8d43f69367
commit 23bb1c0fd6
3 changed files with 7 additions and 3 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "cJSON"]
path = cJSON
url = https://github.com/DaveGamble/cJSON

View File

@ -1,11 +1,11 @@
CC = clang
CFLAGS = -O2
CC = gcc
CFLAGS = -O3
LIBS = -lcjson
all: make-libs-string
make-libs-string:
$(CC) $(CFLAGS) make-libs-string.c $(LIBS) -o $@
$(CC) $(CFLAGS) -o $@ make-libs-string.c $(LIBS)
clean:
rm make-libs-string

1
cJSON Submodule

Submodule cJSON added at cb8693b058