aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: ca8d5397004925e92d2c678e30f1d39984107b37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CC	?= gcc
CFLAGS	?= -Os -g -std=c99
CFLAGS	+= -Wall

TARGETS	:= drminfo

CFLAGS += $(shell pkg-config --cflags libdrm)
LDLIBS += $(shell pkg-config --libs libdrm)

all: $(TARGETS)

clean:
	rm -f $(TARGETS)
	rm -f *~

drminfo: drminfo.o