Commit | Line | Data |
---|---|---|
c0c0989a MJ |
1 | # SPDX-License-Identifier: LGPL-2.1-only |
2 | # | |
3 | # Example makefile to build outside of the LTTng-UST tree. | |
8844360e MD |
4 | |
5 | hello: | |
6 | ${CC} -O2 -I. -o hello -ldl -llttng-ust hello.c tp.c | |
7 | ||
8 | .PHONY: clean | |
9 | clean: | |
10 | rm -f hello |