mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
12 lines
215 B
Makefile
12 lines
215 B
Makefile
|
.PHONY: clean
|
||
|
|
||
|
LDLIBS=../../obj/libst.a
|
||
|
CFLAGS=-g -O0 -I../../obj
|
||
|
|
||
|
./helloworld: helloworld.c $(LDLIBS)
|
||
|
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -Wall -o helloworld helloworld.c $(LDLIBS)
|
||
|
|
||
|
clean:
|
||
|
rm -f helloworld
|
||
|
|