aix-disk-stats/Makefile

16 lines
178 B
Makefile
Raw Normal View History

2022-11-11 07:51:27 +00:00
#
# gcc -I/usr/include -L/usr/lib -lperfstat -o test test.c
CC=gcc
CFLAGS=
default: test
test: test.o
2022-11-11 10:44:28 +00:00
$(CC) -lperfstat -o test test.o
2022-11-11 07:51:27 +00:00
clean:
-rm -f test.o
-rm -f test