Blame src/components/mx/tests/Makefile

Packit Service a1973e
NAME=mx
Packit Service a1973e
include ../../Makefile_comp_tests.target
Packit Service a1973e
Packit Service a1973e
%.o:%.c
Packit Service a1973e
	$(CC) $(CFLAGS) $(OPTFLAGS) $(INCLUDE) -c -o $@ $<
Packit Service a1973e
Packit Service a1973e
TESTS = mx_basic mx_elapsed
Packit Service a1973e
Packit Service a1973e
mx_tests: $(TESTS)
Packit Service a1973e
Packit Service a1973e
mx_basic: mx_basic.o $(UTILOBJS) $(PAPILIB)
Packit Service a1973e
	$(CC) $(CFLAGS) $(INCLUDE) -o mx_basic mx_basic.o $(UTILOBJS) $(PAPILIB) $(LDFLAGS) 
Packit Service a1973e
Packit Service a1973e
Packit Service a1973e
mx_elapsed: mx_elapsed.o $(UTILOBJS) $(PAPILIB)
Packit Service a1973e
	$(CC) $(CFLAGS) $(INCLUDE) -o mx_elapsed mx_elapsed.o $(UTILOBJS) $(PAPILIB) $(LDFLAGS) 
Packit Service a1973e
Packit Service a1973e
Packit Service a1973e
clean:
Packit Service a1973e
	rm -f $(TESTS) *.o
Packit Service a1973e
Packit Service a1973e
Packit Service a1973e
Packit Service a1973e
Packit Service a1973e