# Makefile for TMN simulation 

# This is free software. See the file COPYING for copying conditions.

SRCS =	main.c io.c Makefile dct.c coder.c quant.c mot_est.c pred.c snr.c \
        countbit.c putbits.c ratectrl.c sac.c README COPYING \
        TODO CHANGES putvlc.c intra_pred.c filter.c
HDRS = 	sim.h macros.h config.h \
        sactbls.h indices.h putvlc.h vlc.h main.h
OBJS =	main.o io.o dct.o coder.o quant.o mot_est.o pred.o  snr.o \
        countbit.o putbits.o ratectrl.o sac.o putvlc.o intra_pred.o \
        filter.o malloc_debug.o

# Use -DPRINTMV if you want to print MVs to stdout while coding. 
# Use -DPRINTQ to print the quantizer used during coding (only useful with
#   buffer regulation)

# Use -DFASTIDCT for a fast single precision IDCT. 
# (default is double precision)

# Use -DFULLSEARCH for full search motion estimation
# (default is Fast Search)

# The defines above can also be defined in sim.h

CC = gcc
CFLAGS =  -g -O3 
#CFLAGS =  -g -Wall -ansi -pedantic 

# If you want to compile with -Wall -pedantic -ansi on a Sun, use 
# -DBROKEN_SUN_HEADERS to avoid a lot of compiler warnings


PROGRAM = tmn

all: $(PROGRAM) copy

$(PROGRAM):	$(OBJS)
		$(CC) $(CFLAGS) $(OBJS) -o $(PROGRAM)  -lm

main.o:		main.c sim.h config.h main.h
io.o:		io.c sim.h
coder.o:	coder.c sim.h
dct.o:		dct.c sim.h 
quant.o:	quant.c sim.h 
pred.o:		pred.c sim.h
mot_est.o:	mot_est.c sim.h config.h
snr.o:		snr.c sim.h config.h
putbits.o:	putbits.c sim.h
putvlc.o:	putvlc.c vlc.h sim.h
countbit.o:	countbit.c sim.h sactbls.h indices.h putvlc.h
ratectrl.o:	ratectrl.c sim.h config.h
sac.o:          sac.c sactbls.h sim.h
filter.o:	filter.c sim.h
intra_prec.o:	intra_pred.c sim.h


clean:		
		rm -f *.o *~ tmn

tar:		$(SRCS) $(HDRS) 
		tar cvf TMN.tar $(SRCS) $(HDRS) 
		gzip TMN.tar
		mv TMN.tar.gz TMN-3.0.tgz

copy:
	./copyit
