summaryrefslogtreecommitdiff
path: root/Makefile
blob: fedabb61185217b1dc72a5d4f7521d607e56baeb (plain)
1
2
3
4
5
6
7
8
9
10
11
SOURCE=stress.c
HEADERS=stress.h
LIBS=-lm

stress: $(SOURCE) $(HEADERS)
	$(CC) -Wall -s -o stress $(SOURCE) $(LIBS)

clean:
	rm stress

all: stress