diff options
Diffstat (limited to 'graphics/jhead/files/Makefile')
-rw-r--r-- | graphics/jhead/files/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/jhead/files/Makefile b/graphics/jhead/files/Makefile index cc9f11785303..be4d98535863 100644 --- a/graphics/jhead/files/Makefile +++ b/graphics/jhead/files/Makefile @@ -8,10 +8,10 @@ SRC=. all: jhead -objs = $(OBJ)/jhead.o $(OBJ)/exif.o +objs = $(OBJ)/jhead.o $(OBJ)/jpgfile.o $(OBJ)/exif.o $(OBJ)/%.o:$(SRC)/%.c - cc ${CFLAGS} -Wall -c $< -o $@ + ${CC} ${CFLAGS} -Wall -c $< -o $@ jhead: $(objs) jhead.h - cc -o jhead $(objs) -lm + ${CC} -o jhead $(objs) -lm |