Blame src/components/host_micpower/tests/Makefile

Packit 577717
NAME=host_micpower
Packit 577717
include ../../Makefile_comp_tests.target
Packit 577717
Packit 577717
%.o:%.c
Packit 577717
	$(CC) $(CFLAGS) $(OPTFLAGS) $(INCLUDE) -c -o $@ $<
Packit 577717
Packit 577717
TESTS = host_micpower_basic
Packit 577717
host_micpower_tests : $(TESTS)
Packit 577717
Packit 577717
micpower_tests: $(TESTS)
Packit 577717
Packit 577717
host_micpower_basic: host_micpower_basic.o $(UTILOBJS) $(PAPILIB)
Packit 577717
	$(CC) $(CFLAGS) $(INCLUDE) -o host_micpower_basic host_micpower_basic.o $(UTILOBJS) $(PAPILIB) $(LDFLAGS) 
Packit 577717
Packit 577717
clean:
Packit 577717
	rm -f $(TESTS) *.o
Packit 577717
Packit 577717
Packit 577717
Packit 577717
Packit 577717