mirror of
https://github.com/yshui/picom.git
synced 2024-11-11 13:51:02 -05:00
cfdbd11328
git-subtree-dir: subprojects/test.h git-subtree-mainline:061f9aea9d
git-subtree-split:a84877df68
8 lines
304 B
Makefile
8 lines
304 B
Makefile
all: normal unittest
|
|
|
|
# A normal binary, compiled without unit tests
|
|
normal: test_test1.c test_test2.c ../../test.h
|
|
gcc -O test_test1.c test_test2.c -I../../ -o $@
|
|
# A binary to run unit tests
|
|
unittest: test_test1.c test_test2.c ../../test.h
|
|
gcc -g test_test1.c test_test2.c -DUNIT_TEST -I../../ -o $@
|