]> Creatis software - gdcm.git/commitdiff
ENH: Remove Makefile in case of in source build
authormalaterre <malaterre>
Sat, 21 May 2005 01:43:52 +0000 (01:43 +0000)
committermalaterre <malaterre>
Sat, 21 May 2005 01:43:52 +0000 (01:43 +0000)
src/gdcmmpeg2/src/mpeg2dec/Makefile [deleted file]
src/gdcmmpeg2/src/mpeg2enc/Makefile [deleted file]
src/gdcmmpeg2/src/mpeg2enc/Makefile.wat [deleted file]

diff --git a/src/gdcmmpeg2/src/mpeg2dec/Makefile b/src/gdcmmpeg2/src/mpeg2dec/Makefile
deleted file mode 100644 (file)
index 0f9b8b8..0000000
+++ /dev/null
@@ -1,98 +0,0 @@
-# Makefile for mpeg2decode
-
-# Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved.
-
-#
-# Disclaimer of Warranty
-#
-# These software programs are available to the user without any license fee or
-# royalty on an "as is" basis.  The MPEG Software Simulation Group disclaims
-# any and all warranties, whether express, implied, or statuary, including any
-# implied warranties or merchantability or of fitness for a particular
-# purpose.  In no event shall the copyright-holder be liable for any
-# incidental, punitive, or consequential damages of any kind whatsoever
-# arising from the use of these programs.
-#
-# This disclaimer of warranty extends to the user of these programs and user's
-# customers, employees, agents, transferees, successors, and assigns.
-#
-# The MPEG Software Simulation Group does not represent or warrant that the
-# programs furnished hereunder are free of infringement of any third-party
-# patents.
-#
-# Commercial implementations of MPEG-1 and MPEG-2 video, including shareware,
-# are subject to royalty fees to patent holders.  Many of these patents are
-# general enough such that they are unavoidable regardless of implementation
-# design.
-#
-#
-
-#WARNINGS = -Wall
-#VERIFY = -DVERIFY
-
-#disable this flag if you do not want bitstream element tracing 
-#this will speed up the decoder some since it does not have to test
-#the trace flag at several critical inner loop locations.
-TRACE = -DTRACE
-
-#disable this flag if you do not need verbose trace, such as
-#header information
-VERBOSE = -DVERBOSE
-
-# uncomment the following two lines if you want to include X11 support
-
-#USE_DISP = -DDISPLAY
-#LIBS = -lX11
-
-# uncomment the following two lines if you want to use shared memory
-# (faster display if server and client run on the same machine)
-
-#USE_SHMEM = -DSH_MEM
-#LIBS = -lXext -lX11
-
-# if your X11 include files / libraries are in a non standard location:
-# set INCLUDEDIR to -I followed by the appropriate include file path and
-# set LIBRARYDIR to -L followed by the appropriate library path and
-
-#INCLUDEDIR = -I/usr/openwin/include
-#LIBRARYDIR = -L/usr/openwin/lib
-
-#
-# GNU gcc
-#
-CC = gcc
-CFLAGS = -O2 $(USE_DISP) $(USE_SHMEM) $(INCLUDEDIR) $(TRACE) $(VERBOSE) $(VERIFY) $(WARNINGS)
-
-OBJ = mpeg2dec.o getpic.o motion.o getvlc.o gethdr.o getblk.o getbits.o store.o recon.o spatscal.o idct.o idctref.o display.o systems.o subspic.o verify.o
-
-all: mpeg2decode
-
-pc: mpeg2dec.exe
-
-clean:
-       rm -f *.o *% core mpeg2decode
-
-mpeg2dec.exe: mpeg2decode
-       coff2exe mpeg2dec
-
-mpeg2decode: $(OBJ)
-       $(CC) $(CFLAGS) $(LIBRARYDIR) -o mpeg2decode $(OBJ) -lm $(LIBS)
-
-display.o : display.c config.h global.h mpeg2dec.h 
-getbits.o : getbits.c config.h global.h mpeg2dec.h 
-getblk.o : getblk.c config.h global.h mpeg2dec.h 
-gethdr.o : gethdr.c config.h global.h mpeg2dec.h 
-getpic.o : getpic.c config.h global.h mpeg2dec.h 
-getvlc.o : getvlc.c config.h global.h mpeg2dec.h getvlc.h 
-idct.o : idct.c config.h 
-idctref.o : idctref.c config.h 
-motion.o : motion.c config.h global.h mpeg2dec.h 
-mpeg2dec.o : mpeg2dec.c config.h global.h mpeg2dec.h 
-recon.o : recon.c config.h global.h mpeg2dec.h 
-spatscal.o : spatscal.c config.h global.h mpeg2dec.h 
-store.o : store.c config.h global.h mpeg2dec.h 
-
-# additions since July 4, 1994 edition
-systems.o : systems.c config.h global.h mpeg2dec.h 
-subspic.o : subspic.c config.h global.h mpeg2dec.h 
-verify.o:   verify.c config.h global.h mpeg2dec.h
diff --git a/src/gdcmmpeg2/src/mpeg2enc/Makefile b/src/gdcmmpeg2/src/mpeg2enc/Makefile
deleted file mode 100644 (file)
index 9f6dd70..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-# Makefile for mpeg2encode
-
-# Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
-
-#
-# Disclaimer of Warranty
-#
-# These software programs are available to the user without any license fee or
-# royalty on an "as is" basis.  The MPEG Software Simulation Group disclaims
-# any and all warranties, whether express, implied, or statuary, including any
-# implied warranties or merchantability or of fitness for a particular
-# purpose.  In no event shall the copyright-holder be liable for any
-# incidental, punitive, or consequential damages of any kind whatsoever
-# arising from the use of these programs.
-#
-# This disclaimer of warranty extends to the user of these programs and user's
-# customers, employees, agents, transferees, successors, and assigns.
-#
-# The MPEG Software Simulation Group does not represent or warrant that the
-# programs furnished hereunder are free of infringement of any third-party
-# patents.
-#
-# Commercial implementations of MPEG-1 and MPEG-2 video, including shareware,
-# are subject to royalty fees to patent holders.  Many of these patents are
-# general enough such that they are unavoidable regardless of implementation
-# design.
-#
-#
-
-# select one of the following CC CFLAGS settings
-
-#
-# GNU gcc
-#
-CC = gcc
-CFLAGS = -O2 -Wall
-
-OBJ = mpeg2enc.o conform.o putseq.o putpic.o puthdr.o putmpg.o putvlc.o putbits.o motion.o predict.o readpic.o writepic.o transfrm.o fdctref.o idct.o quantize.o ratectl.o stats.o
-
-all: mpeg2encode
-
-pc: mpeg2enc.exe
-
-clean:
-       rm -f *.o *% core mpeg2encode
-
-mpeg2enc.exe: mpeg2encode
-       coff2exe mpeg2enc
-
-mpeg2encode: $(OBJ)
-       $(CC) $(CFLAGS) -o mpeg2encode $(OBJ) -lm
-
-conform.o : conform.c config.h global.h mpeg2enc.h 
-fdctref.o : fdctref.c config.h 
-idct.o : idct.c config.h 
-motion.o : motion.c config.h global.h mpeg2enc.h 
-mpeg2enc.o : mpeg2enc.c config.h global.h mpeg2enc.h 
-predict.o : predict.c config.h global.h mpeg2enc.h 
-putbits.o : putbits.c config.h 
-puthdr.o : puthdr.c config.h global.h mpeg2enc.h 
-putmpg.o : putmpg.c config.h global.h mpeg2enc.h 
-putpic.o : putpic.c config.h global.h mpeg2enc.h 
-putseq.o : putseq.c config.h global.h mpeg2enc.h 
-putvlc.o : putvlc.c config.h global.h mpeg2enc.h vlc.h 
-quantize.o : quantize.c config.h global.h mpeg2enc.h 
-ratectl.o : ratectl.c config.h global.h mpeg2enc.h 
-readpic.o : readpic.c config.h global.h mpeg2enc.h 
-stats.o : stats.c config.h global.h mpeg2enc.h 
-transfrm.o : transfrm.c config.h global.h mpeg2enc.h 
-writepic.o : writepic.c config.h global.h mpeg2enc.h 
diff --git a/src/gdcmmpeg2/src/mpeg2enc/Makefile.wat b/src/gdcmmpeg2/src/mpeg2enc/Makefile.wat
deleted file mode 100644 (file)
index 57238df..0000000
+++ /dev/null
@@ -1,85 +0,0 @@
-# Makefile for mpeg2encode (user contribution, untested)
-#
-# WATCOM C/386++
-#
-INC      = C:\OR386\INCLUDE
-
-LINKFILE = temp.lnk
-CC = WCC386P
-LL = WLINKP system dos4g
-
-!ifdef DEBUG
-CFLAGS = -w4 -zq -4r -d2 -I$(INC)
-!else
-CFLAGS = -w4 -zq -4r -oaxt -I$(INC)
-!endif
-
-OBJ = mpeg2enc.obj conform.obj putseq.obj putpic.obj puthdr.obj putmpg.obj 
-putvlc.obj putbits.obj motion.obj predict.obj readpic.obj 
-writepic.obj transfrm.obj fdctref.obj idct.obj quantize.obj 
-ratectl.obj stats.obj
-
-mpeg2enc.exe: $(OBJ)
-        %create $(LINKFILE)
-    %append $(LINKFILE) debug all
-    %append $(LINKFILE) opt stack=32000
-        %append $(LINKFILE) opt caseexact
-        %append $(LINKFILE) opt map=$^&.MAP
-    %append $(LINKFILE) NAME $^&
-        for %i in ($(OBJ)) do %append $(LINKFILE) FILE %i
-        $(LL) @$(LINKFILE)
-
-conform.obj: conform.c config.h mpeg2enc.h global.h
-       $(CC) $(CFLAGS) $*.c
-
-fdctref.obj: fdctref.c config.h
-       $(CC) $(CFLAGS) $*.c
-
-idct.obj: idct.c config.h
-       $(CC) $(CFLAGS) $*.c
-
-motion.obj: motion.c config.h mpeg2enc.h global.h
-       $(CC) $(CFLAGS) $*.c
-
-mpeg2enc.obj: mpeg2enc.c config.h mpeg2enc.h global.h
-       $(CC) $(CFLAGS) $*.c
-
-predict.obj: predict.c config.h mpeg2enc.h global.h
-       $(CC) $(CFLAGS) $*.c
-
-putbits.obj: putbits.c config.h
-       $(CC) $(CFLAGS) $*.c
-
-puthdr.obj: puthdr.c config.h mpeg2enc.h global.h
-       $(CC) $(CFLAGS) $*.c
-
-putmpg.obj: putmpg.c config.h mpeg2enc.h global.h
-       $(CC) $(CFLAGS) $*.c
-
-putpic.obj: putpic.c config.h mpeg2enc.h global.h
-       $(CC) $(CFLAGS) $*.c
-
-putseq.obj: putseq.c config.h mpeg2enc.h global.h
-       $(CC) $(CFLAGS) $*.c
-
-putvlc.obj: putvlc.c config.h mpeg2enc.h global.h vlc.h
-       $(CC) $(CFLAGS) $*.c
-
-quantize.obj: quantize.c config.h mpeg2enc.h global.h
-       $(CC) $(CFLAGS) $*.c
-
-ratectl.obj: ratectl.c config.h mpeg2enc.h global.h
-       $(CC) $(CFLAGS) $*.c
-
-readpic.obj: readpic.c config.h mpeg2enc.h global.h
-       $(CC) $(CFLAGS) $*.c
-
-stats.obj: stats.c config.h mpeg2enc.h global.h
-       $(CC) $(CFLAGS) $*.c
-
-transfrm.obj: transfrm.c config.h mpeg2enc.h global.h
-       $(CC) $(CFLAGS) $*.c
-
-writepic.obj: writepic.c config.h mpeg2enc.h global.h
-       $(CC) $(CFLAGS) $*.c
-