]> granicus.if.org Git - openjpeg/commitdiff
Change file modified. -fPIC flag used for 64-bit compilation. Move operation (rather...
authorFrancois-Olivier Devaux <fodevaux@users.noreply.github.com>
Tue, 13 Feb 2007 08:49:00 +0000 (08:49 +0000)
committerFrancois-Olivier Devaux <fodevaux@users.noreply.github.com>
Tue, 13 Feb 2007 08:49:00 +0000 (08:49 +0000)
ChangeLog
Makefile

index 3b62d45bd5b2abeae501079189eaa8c588bf132b..d65f5a9ea9e2a654cb4a5a34c33d69a17c6f0cef 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,9 @@ What's New for OpenJPEG
 ! : changed
 + : added
 
+February 13, 2007
+! [FOD] Change file modified. -fPIC flag used for 64-bit compilation. Move operation (rather than copy) for the dist library creation, and -p flag added.
+
 January 31, 2007
 ! [FOD] Extra tokens at the end of #endif directive corrected in openjpeg.c, j2k.c and image_to_j2k.c -> no more warnings in linux compilation
 ! [FOD] Linux Makefile added for the codec
index d8d9e4bc115a6736f08d6454fe6e485de60dd0a4..23e0bc984bba80b04c271633ba840150703ee31e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ INSTALLDIR = /usr/lib
 # Converts cr/lf to just lf
 DOS2UNIX = dos2unix
 
-COMPILERFLAGS = -O3
+COMPILERFLAGS = -O3 -fPIC
 LIBRARIES = -lstdc++
 
 MODULES = $(SRCS:.c=.o)
@@ -34,10 +34,10 @@ default: all
 all: dist
 
 dist: OpenJPEG
-       mkdir dist
-       cp *.a dist/
-       cp *.so dist/
-       cp libopenjpeg/openjpeg.h dist/
+       mkdir -p dist
+       cp *.a dist
+       mv *.so dist
+       cp libopenjpeg/openjpeg.h dist
 
 dos2unix:
        @$(DOS2UNIX) $(SRCS) $(INCLS)