|
From: Joern E. <je...@us...> - 2002-05-05 01:33:11
|
Update of /cvsroot/squeak/squeak/platforms/Cross/plugins/Mpeg3Plugin/libmpeg In directory usw-pr-cvs1:/tmp/cvs-serv28996/platforms/Cross/plugins/Mpeg3Plugin/libmpeg Modified Files: mkMakefile Log Message: changed macro assignments from ":=" to "=", "A := $(A) ..." to "A += ..:" so it also works with Solaris make Index: mkMakefile =================================================================== RCS file: /cvsroot/squeak/squeak/platforms/Cross/plugins/Mpeg3Plugin/libmpeg/mkMakefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** mkMakefile 24 Oct 2001 23:12:11 -0000 1.1.1.1 --- mkMakefile 5 May 2002 01:33:09 -0000 1.2 *************** *** 55,62 **** cat >> $commonPart <<EOF # flags for compiling libmpeg ! LIBMPEG_CFLAGS := \$(LIBMPEG_CFLAGS) -I\$(LIBMPEG_SOURCE_DIR) -I\$(LIBMPEG_SOURCE_DIR)/audio -I\$(LIBMPEG_SOURCE_DIR)/video # a file that indicates the build tree has been created ! LIBMPEG_BUILD_DIR_CREATED:=\$(LIBMPEG_BUILD_DIR)/tree.created EOF --- 55,62 ---- cat >> $commonPart <<EOF # flags for compiling libmpeg ! LIBMPEG_CFLAGS += -I\$(LIBMPEG_SOURCE_DIR) -I\$(LIBMPEG_SOURCE_DIR)/audio -I\$(LIBMPEG_SOURCE_DIR)/video # a file that indicates the build tree has been created ! LIBMPEG_BUILD_DIR_CREATED=\$(LIBMPEG_BUILD_DIR)/tree.created EOF *************** *** 65,73 **** if [ $USE_MMX = 1 ] then ! echo "LIBMPEG_CFLAGS := \$(LIBMPEG_CFLAGS) -DHAVE_MMX" >> $commonPart fi if [ $USE_PTHREADS = 0 ] then ! echo "LIBMPEG_CFLAGS := \$(LIBMPEG_CFLAGS) -DNOPTHREADS" >> $commonPart fi echo >> $commonPart --- 65,73 ---- if [ $USE_MMX = 1 ] then ! echo "LIBMPEG_CFLAGS += -DHAVE_MMX" >> $commonPart fi if [ $USE_PTHREADS = 0 ] then ! echo "LIBMPEG_CFLAGS += -DNOPTHREADS" >> $commonPart fi echo >> $commonPart *************** *** 169,180 **** ### settings for building libmpeg by itself ! LIBMPEG_CC:=cc ! LIBMPEG_CFLAGS:= ! LIBMPEG_LINKLIB:=ar rcs ! LIBMPEG_NASM:=nasm -f elf ! LIBMPEG_SOURCE_DIR:=. ! LIBMPEG_BUILD_DIR:=. ! LIBMPEG_OBJECT_EXT:=o ! LIBMPEG_LIBRARY_EXT:=a --- 169,180 ---- ### settings for building libmpeg by itself ! LIBMPEG_CC=cc ! LIBMPEG_CFLAGS= ! LIBMPEG_LINKLIB=ar rcs ! LIBMPEG_NASM=nasm -f elf ! LIBMPEG_SOURCE_DIR=. ! LIBMPEG_BUILD_DIR=. ! LIBMPEG_OBJECT_EXT=o ! LIBMPEG_LIBRARY_EXT=a |