Sha256: dce1cfce7ae813d3138394a17c3e2e227ffce58019ffa1e4008af751ae5db0f7
Contents?: true
Size: 641 Bytes
Versions: 2
Compression:
Stored size: 641 Bytes
Contents
#-------------------------------- # jhead makefile for Win32 #-------------------------------- CC=cl /nologo CFLAGS=-c -G3 -Ox -W3 -Zp -Zd LINKER=link LINKCON = /nologo all:jhead.exe OBJ = . OBJECTS_JHEAD = $(OBJ)\jhead.obj \ $(OBJ)\jpgfile.obj \ $(OBJ)\myglob.obj \ $(OBJ)\paths.obj \ $(OBJ)\exif.obj \ $(OBJ)\iptc.obj \ $(OBJ)\gpsinfo.obj \ $(OBJ)\makernote.obj $(OBJECTS_JHEAD): $(@B).c jhead.h $(CC) /Fo$(OBJ)\ $(CFLAGS) $(@B).c jhead.exe: $(OBJECTS_JHEAD) $(LINKER) $(LINKCON) -OUT:jhead.exe $(OBJECTS_JHEAD)
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rjhead-2.88.1 | ext/makefile-win32 |
rjhead-0.2.88 | ext/makefile-win32 |