Sha256: fe98941d4cda45ad376192acd4dfb97ecb2aa2f85c0c87637429f1698b5a11e5
Contents?: true
Size: 442 Bytes
Versions: 2
Compression:
Stored size: 442 Bytes
Contents
#-------------------------------- # jhead makefile for Unix #-------------------------------- OBJ=. SRC=. CFLAGS= -O3 -Wall all: jhead objs = $(OBJ)/jhead.o $(OBJ)/jpgfile.o $(OBJ)/paths.o \ $(OBJ)/exif.o $(OBJ)/iptc.o $(OBJ)/gpsinfo.o $(OBJ)/makernote.o $(OBJ)/%.o:$(SRC)/%.c ${CC} $(CFLAGS) -c $< -o $@ jhead: $(objs) jhead.h ${CC} -o jhead $(objs) -lm clean: rm -f $(objs) jhead install: mkdir -p ../bin; cp jhead ../bin/jhead
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rjhead-2.88.1 | ext/makefile |
rjhead-0.2.88 | ext/makefile |