diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-06-17 18:48:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-17 18:48:09 +0200 |
commit | 9df1b5b04923340aca69ce3ed4565fceeb042c01 (patch) | |
tree | d01b3c5a8bfb7668c5abac4efbb4e70bbb203b6d /src/Makefile | |
parent | a624883d92ea54886b739f1000e39ccf1afc5577 (diff) | |
parent | 4ef0c142d96d97e517455b5711782fa5706cc2ff (diff) |
Merge pull request #540 from tbvdm/strverscmp
Enable --version-sort on systems without strverscmp()
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index ac4d2fe..10e33eb 100644 --- a/src/Makefile +++ b/src/Makefile @@ -34,6 +34,10 @@ ifeq (${exif},1) exif_nikon.c endif +ifneq (${verscmp},1) + TARGETS += strverscmp.c +endif + OBJECTS = ${TARGETS:.c=.o} I_SRCS = ${shell echo *.raw} |