You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
305 B
23 lines
305 B
CFLAGS=-Wall -std=c89 -g -O2
|
|
|
|
all: libjsmn.a
|
|
|
|
demo: libjsmn.a demo.o
|
|
$(CC) $(LDFLAGS) demo.o -L. -ljsmn -o $@
|
|
|
|
libjsmn.a: jsmn.o
|
|
ar rc $@ $^
|
|
|
|
%.o: %.c jsmn.h
|
|
$(CC) -c $(CFLAGS) $< -o $@
|
|
|
|
test: all demo
|
|
sh test.sh
|
|
|
|
clean:
|
|
rm -f jsmn.o demo.o
|
|
rm -f libjsmn.a
|
|
rm -f demo
|
|
|
|
.PHONY: all clean test demo
|