blob: 6360c924019fe2aaf1715ca924a2cfd683dc2ac0 [file] [log] [blame]
TARGET=cyclictest
FLAGS= -Wall -Wno-nonnull -O2
LIBS = -lpthread -lrt
all: cyclictest.c
$(CROSS_COMPILE)gcc $(FLAGS) $^ -o $(TARGET) $(LIBS)
clean:
rm -f $(TARGET) *.o .depend *.*~