mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
get Makefile.lite system (with asm) working on Darwin, better handling of libogg paths and linkage
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user