diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-02-11 11:30:38 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-02-11 11:30:38 (EST) |
commit | f61216414a9e2d00c7b7afaaedb498574f6f805a (patch) | |
tree | 1a0dd489a20a952e80ea45f7a28fbf58428c6412 /resources/utilities/i945-pwm/Makefile | |
parent | eda8927c15d384eceff97addb863d5b83c829843 (diff) | |
download | libreboot-f61216414a9e2d00c7b7afaaedb498574f6f805a.zip libreboot-f61216414a9e2d00c7b7afaaedb498574f6f805a.tar.gz libreboot-f61216414a9e2d00c7b7afaaedb498574f6f805a.tar.bz2 |
i945-pwm: add -lz to Makefile
Fixes build error reported by user.
Diffstat (limited to 'resources/utilities/i945-pwm/Makefile')
-rw-r--r-- | resources/utilities/i945-pwm/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/resources/utilities/i945-pwm/Makefile b/resources/utilities/i945-pwm/Makefile new file mode 100644 index 0000000..cd63a92 --- /dev/null +++ b/resources/utilities/i945-pwm/Makefile @@ -0,0 +1,4 @@ +CFLAGS ?= -O2 -Wall -W -ggdb + +i945-pwm: i945-pwm.c + $(CC) -std=gnu99 $(CFLAGS) $(LDFLAGS) -o $@ $< -lpci -lz |