Blame src/components/lustre/tests/Makefile

Packit 577717
NAME=lustre
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 = lustre_basic
Packit 577717
Packit 577717
lustre_tests: $(TESTS)
Packit 577717
Packit 577717
lustre_basic: lustre_basic.o $(UTILOBJS) $(PAPILIB)
Packit 577717
	$(CC) $(CFLAGS) $(INCLUDE) -o lustre_basic lustre_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