Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 275200 | Differences between
and this patch

Collapse All | Expand All

(-)makefile.orig (-3 / +2 lines)
Lines 3-9 Link Here
3
#--------------------------------
3
#--------------------------------
4
OBJ=.
4
OBJ=.
5
SRC=.
5
SRC=.
6
CFLAGS= -O3 -Wall
7
6
8
all: jhead
7
all: jhead
9
8
Lines 11-20 Link Here
11
	$(OBJ)/exif.o $(OBJ)/iptc.o $(OBJ)/gpsinfo.o $(OBJ)/makernote.o 
10
	$(OBJ)/exif.o $(OBJ)/iptc.o $(OBJ)/gpsinfo.o $(OBJ)/makernote.o 
12
11
13
$(OBJ)/%.o:$(SRC)/%.c
12
$(OBJ)/%.o:$(SRC)/%.c
14
	${CC} $(CFLAGS) -c $< -o $@
13
	${CC} ${CFLAGS} -c $< -o $@
15
14
16
jhead: $(objs) jhead.h
15
jhead: $(objs) jhead.h
17
	${CC} -o jhead $(objs) -lm
16
	${CC} ${LDFLAGS} -o jhead $(objs) -lm
18
17
19
clean:
18
clean:
20
	rm -f $(objs) jhead
19
	rm -f $(objs) jhead

Return to bug 275200