aboutsummaryrefslogtreecommitdiff
path: root/projects/bucts/sources/Makefile
blob: 2b165f3eaf69b69e13610b941c41a5d1e14ed0bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
CC:=gcc
OBJ:=bucts.o
VERSION:=withoutgit

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

all: bucts

bucts: $(OBJ)
	$(CC) -o $@ $(OBJ) $(LDFLAGS) -lpci -lz -static

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

.PHONY: clean
clean:
	rm -f bucts $(OBJ)