Skip to content

Commit 6b1f299

Browse files
committed
Fix makefile
Bump copyright year.
1 parent 1bbd93d commit 6b1f299

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

examples/exr2fptiff/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

22
CXX=clang++
3+
CC=clang
34

45
CFLAGS = -fsanitize=address -Weverything -Wno-padded -g -O2 -I../../ -I../../deps/miniz
56
CXXFLAGS = -std=c++11 -Wno-c++98-compat -Wno-variadic-macros $(CFLAGS)
@@ -12,7 +13,7 @@ LDFLAGS = -fsanitize=address
1213

1314
all: exr2fptiff
1415

15-
exr2fptiff: exr2fptiff.o tinyexr.o
16+
exr2fptiff: exr2fptiff.o tinyexr.o miniz.o
1617
$(CXX) -o $@ $^ $(LDFLAGS)
1718

1819
exr2fptiff.o: exr2fptiff.cc tiny_dng_writer.h

examples/exr2ldr/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
all:
2-
clang -g -O2 -c -I../../deps/miniz ../../deps/miniz/miniz.c
3-
clang++ -g -fsanitize=address -O2 -o exr2ldr -I../common -I../../ -I../../deps/miniz exr2ldr.cc ../../tinyexr.cc
2+
clang -g -O2 -c -I../../deps/miniz ../../deps/miniz/miniz.c
3+
clang++ -g -fsanitize=address -O2 -o exr2ldr -I../common -I../../ -I../../deps/miniz exr2ldr.cc ../../tinyexr.cc miniz.o

tinyexr.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef TINYEXR_H_
22
#define TINYEXR_H_
33
/*
4-
Copyright (c) 2014 - 2020, Syoyo Fujita and many contributors.
4+
Copyright (c) 2014 - 2021, Syoyo Fujita and many contributors.
55
All rights reserved.
66
77
Redistribution and use in source and binary forms, with or without

0 commit comments

Comments
 (0)