# HG changeset patch # User alex # Date 1066131363 0 # Node ID 1344cea6e2a8377615cc4e1571cef26692f3d598 # Parent a313e1080322d42693977f84eb7607e5eb0be8b7 make it compatible with older make (debian stable - make 3.79.1) diff -r a313e1080322 -r 1344cea6e2a8 Makefile --- a/Makefile Tue Oct 14 04:15:53 2003 +0000 +++ b/Makefile Tue Oct 14 11:36:03 2003 +0000 @@ -21,7 +21,13 @@ OBJS+= asf.o endif -ifeq ($(AMR_NB),yes) | ifeq ($(AMR_NB_FIXED),yes) | ifeq ($(AMR_WB),yes) +ifeq ($(AMR_NB),yes) +OBJS+= amr.o +endif +ifeq ($(AMR_NB_FIXED),yes) +OBJS+= amr.o +endif +ifeq ($(AMR_WB),yes) OBJS+= amr.o endif