blob: 917e6f1a5eb7d40536eb3564cc97496d37fadccf (
plain)
1 2 3 4 5 6 7 8 9 10 11 12 13 | .PHONY: all: clocktest threaded_memtest .PHONY: clean clean: rm -f clocktest threaded_memtest threaded_memtest: CFLAGS += -pthread threaded_memtest: CFLAGS += -Wno-unused-but-set-variable clocktest: CFLAGS += -D_POSIX_C_SOURCE=199309L -D_BSD_SOURCE clocktest: LDLIBS += -lrt CFLAGS += -Wall
|