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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/ply-frame-buffer.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 C = ply-image.c \ 1 C = ply-image.c \
2 ply-frame-buffer.c \ 2 ply-frame-buffer.c \
3 ply-gamma.c \
3 ply-list.c \ 4 ply-list.c \
4 5
5 6
6 H = ply-frame-buffer.h \ 7 H = ply-frame-buffer.h \
8 ply-gamma.h \
7 ply-image.h \ 9 ply-image.h \
8 ply-list.h \ 10 ply-list.h \
9 ply-utils.h \ 11 ply-utils.h \
10 12
11 CFLAGS ?= -O2 13 CFLAGS ?= -O2
12 14
13 ply-image: $(C) $(H) Makefile 15 ply-image: $(C) $(H) Makefile
14 $(CC) $(CFLAGS) $(C) $(LIBS) -Wall -I. -o ply-image -o ply-image \ 16 $(CC) $(CFLAGS) $(C) $(LIBS) -Wall -I. -o ply-image -o ply-image \
15 » » -lpng -lrt -lm 17 » » -lpng -lrt -lm `pkg-config --libs --cflags libdrm`
16 18
17 clean: 19 clean:
18 rm -f ply-image *~ 20 rm -f ply-image *~
OLDNEW
« 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