blob: 6431b25d34a280c32b112478d7ad9695dcdb2df5 [file] [log] [blame]
CC ?= $(CROSS_COMPILE)gcc
TARGET=signaltest
FLAGS= -Wall -O2
LIBS = -lpthread -lrt
all: signaltest.c
$(CC) $(FLAGS) $^ -o $(TARGET) $(LIBS)
clean:
rm -f $(TARGET) *.o .depend *.*~