summaryrefslogtreecommitdiffstats
path: root/util/bucts/Makefile
blob: 98f731449e9ce12d04bccad57254af393a25d76a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
CC:=gcc
OBJ:=bucts.o
TARGET=bucts
VERSION:=$(shell git describe)
WERROR=-Werror
CFLAGS=-O2 -Wall -Wextra -Wshadow ${WERROR}

ifeq ($(shell uname), FreeBSD)
	CFLAGS += -I/usr/local/include
	LDFLAGS += -L/usr/local/lib
endif

all: $(TARGET)

$(TARGET): $(OBJ)
	$(CC) -o $@ $(OBJ) $(LDFLAGS) -lpci

%.o: %.c
	$(CC) $(CFLAGS) -DVERSION='"$(VERSION)"' -c $<

clean:
	rm -f bucts $(OBJ)

distclean: clean

help:
	@echo "${TARGET}: tool to manipulate the BUC.TS bit on Intel targets."
	@echo "Targets: all, clean, distclean, help"
	@echo "To disable warnings as errors, run make as:"
	@echo "  make all WERROR=\"\""

.PHONY: all clean distclean help