mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 22:40:30 +00:00
9 lines
312 B
Makefile
9 lines
312 B
Makefile
test:
|
|
c++ -g -DASTAT_DEBUG -DDEFINE_TEST_MAIN astat.cpp ../src/compat/platform_pipe.cpp -I../src -pthread -o astat_test
|
|
|
|
lib: astat.a
|
|
|
|
astat.a: astat.cpp ../src/compat/platform_pipe.cpp
|
|
c++ -fpic -c -std=c++11 astat.cpp ../src/compat/platform_pipe.cpp -I../src -pthread
|
|
ar rcs astat.a astat.o platform_pipe.o
|