diff options
author | Swift Geek <swiftgeek@gmail.com> | 2017-12-23 17:13:04 +0000 |
---|---|---|
committer | Gogs <gogitservice@gmail.com> | 2017-12-23 17:13:04 +0000 |
commit | b7c7ab86bf3c16d00e79576b00e91b57cb5ef62e (patch) | |
tree | fb698d6ad84821ddf966fc8b0d9cbe1f3d5d6c19 /projects/bucts/sources/Makefile | |
parent | 689dfc8aaf2bbb6d8245fa74d84a6cccf9d025fd (diff) | |
parent | 5cb6c2e097f403c421bddf06bb278c9969727b6f (diff) | |
download | librebootfr-b7c7ab86bf3c16d00e79576b00e91b57cb5ef62e.tar.gz librebootfr-b7c7ab86bf3c16d00e79576b00e91b57cb5ef62e.zip |
Merge branch 'bucts' of and_who/libreboot into master
Diffstat (limited to 'projects/bucts/sources/Makefile')
-rw-r--r-- | projects/bucts/sources/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/projects/bucts/sources/Makefile b/projects/bucts/sources/Makefile new file mode 100644 index 00000000..2b165f3e --- /dev/null +++ b/projects/bucts/sources/Makefile @@ -0,0 +1,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) |