change to make libFLAC-asm a static, non-libtool library
authorJosh Coalson <jcoalson@users.sourceforce.net>
Fri, 20 Jul 2001 23:46:09 +0000 (23:46 +0000)
committerJosh Coalson <jcoalson@users.sourceforce.net>
Fri, 20 Jul 2001 23:46:09 +0000 (23:46 +0000)
src/libFLAC/Makefile.am
src/libFLAC/ia32/Makefile.am

index 296205f..2e97617 100644 (file)
@@ -32,7 +32,7 @@ else
 if FLaC__CPU_IA32
 if FLaC__HAS_NASM
 SUBDIRS = ia32 .
-libFLAC_la_LIBADD = ia32/libFLAC-asm.la
+libFLAC_la_LIBADD = ia32/libFLAC-asm.a
 endif
 endif
 endif
index c56616e..82295c5 100644 (file)
@@ -20,14 +20,16 @@ SUFFIXES = .nasm .lo
 
 STRIP_FPIC = sh $(top_srcdir)/strip_fPIC.sh
 
-.nasm.lo:
-       $(LIBTOOL) --tag=CC --mode=compile \
-               $(STRIP_FPIC) $(NASM) -f $(OBJ_FORMAT) -d OBJ_FORMAT_$(OBJ_FORMAT) $<
+.nasm.o:
+       $(NASM) -f $(OBJ_FORMAT) -d OBJ_FORMAT_$(OBJ_FORMAT) $< -o $@
 
-#@@@OLD RULE:  $(NASM) -f $(OBJ_FORMAT) -d OBJ_FORMAT_$(OBJ_FORMAT) $< -o $@
+# patch from Ben for the above rule that may be needed with new libtool:
+#.nasm.lo:
+#      $(LIBTOOL) --tag=CC --mode=compile \
+#              $(STRIP_FPIC) $(NASM) -f $(OBJ_FORMAT) -d OBJ_FORMAT_$(OBJ_FORMAT) $<
 
-noinst_LTLIBRARIES = libFLAC-asm.la
-libFLAC_asm_la_SOURCES = \
+noinst_LIBRARIES = libFLAC-asm.a
+libFLAC_asm_a_SOURCES = \
        cpu_asm.nasm \
        fixed_asm.nasm \
        lpc_asm.nasm