Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Unified Diff: src/Makefile

Issue 6877024: Add gamma support to ply-image. (Closed) Base URL: ssh://gitrw.chromium.org:9222/ply-image.git@master
Patch Set: git cl push Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/ply-frame-buffer.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/Makefile
diff --git a/src/Makefile b/src/Makefile
index 27f3acd8b6d08c8f9c94d8d38aaa381d432ea68e..ce85b09bf324faa67e8585b0003584dfb78031fb 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,9 +1,11 @@
C = ply-image.c \
ply-frame-buffer.c \
+ ply-gamma.c \
ply-list.c \
H = ply-frame-buffer.h \
+ ply-gamma.h \
ply-image.h \
ply-list.h \
ply-utils.h \
@@ -12,7 +14,7 @@ CFLAGS ?= -O2
ply-image: $(C) $(H) Makefile
$(CC) $(CFLAGS) $(C) $(LIBS) -Wall -I. -o ply-image -o ply-image \
- -lpng -lrt -lm
+ -lpng -lrt -lm `pkg-config --libs --cflags libdrm`
clean:
rm -f ply-image *~
« no previous file with comments | « no previous file | src/ply-frame-buffer.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698