blob: b4f73c7719cd87c8f4443ddc2376b7a8b70addac [file] [log] [blame]
CC = gcc
PROG = test_clock_getres
SRC = test_clock_getres.c
LIBS = -lrt
all: $(PROG)
$(PROG):
$(CC) $(LIBS) -o $(PROG) $(SRC)
clean:
rm -f $(PROG)