mirror of https://github.com/ossrs/srs.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
183 B
Makefile
12 lines
183 B
Makefile
3 years ago
|
.PHONY: clean
|
||
|
|
||
|
LDLIBS=../../obj/libst.a
|
||
|
CFLAGS=-g -O0
|
||
|
|
||
|
./verify: verify.c $(LDLIBS)
|
||
|
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -Wall -o verify verify.c $(LDLIBS)
|
||
|
|
||
|
clean:
|
||
|
rm -f verify
|
||
|
|