summaryrefslogtreecommitdiffstats
path: root/meta-agl-test/recipes-tests/aio-stress/files/Makefile
blob: c2b2ffe80ef006313cb7a791950ed30c9faf4400 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS = -Wall
TARGET = aio-stress


all: $(TARGET)


$(TARGET): aio-stress.c
	$(CC) $(CFLAGS) $^ -o $@ -lpthread -laio


clean:
	$(RM) $(TARGET)