Makefile revision a79599ac303ff1e35f2717b3e201dee3d1159fe4
1CFLAGS += -Wall
2CPPFLAGS += -I../../../../include -I../libcontrollers
3LDLIBS += -lm -L../../../../lib/ -L../libcontrollers -lcontrollers -lltp
4
5SRCS    = $(wildcard *.c)
6
7TARGETS = $(patsubst %.c,%,$(SRCS))
8
9all:	$(TARGETS)
10
11clean:
12	rm -f $(TARGETS) *.o
13
14install:
15	@set -e; for i in $(TARGETS) run_cpuctl_test.sh \
16	run_cpuctl_stress_test.sh parameters.sh run_cpuctl_latency_test.sh; \
17	do ln -f $$i ../../../bin/$$i ; chmod +x $$i ; done
18
19