get Makefile.lite system (with asm) working on Darwin, better handling of libogg paths and linkage

This commit is contained in:
Josh Coalson
2004-10-30 00:03:21 +00:00
parent 4f4d9675de
commit 2757af6c1d
15 changed files with 118 additions and 41 deletions

View File

@@ -20,10 +20,18 @@
#
topdir = ../..
libdir = $(topdir)/obj/$(BUILD)/lib
PROGRAM_NAME = test_libFLAC++
INCLUDES = -I$(topdir)/include
LIBS = -lgrabbag -lreplaygain_analysis -lFLAC++ -lFLAC -lm
INCLUDES = -I$(topdir)/include
ifeq ($(DARWIN_BUILD),yes)
EXPLICIT_LIBS = $(libdir)/libgrabbag.a $(libdir)/libreplaygain_analysis.a $(libdir)/libFLAC++.a $(libdir)/libFLAC.a -lm
else
LIBS = -lgrabbag -lreplaygain_analysis -lFLAC++ -lFLAC -lm
endif
SRCS_C = \
file_utils.c \
metadata_utils.c