mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
11 lines
141 B
Makefile
11 lines
141 B
Makefile
|
.PHONY: clean
|
||
|
|
||
|
CFLAGS=-g -O0
|
||
|
|
||
|
./porting: porting.c
|
||
|
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -Wall -o $@ $^ $(LDLIBS)
|
||
|
|
||
|
clean:
|
||
|
rm -f porting
|
||
|
|