mirror of https://github.com/xiph/flac
Makefile.lite: Include config.mk from top level build dir
Makefile.lite in libs/executables subdirs must include top level's config.mk to allow variables defined there (OS, PROC) to be used; otherwise e.g. EXPLICIT_LIBS is not set and link fails on Darwin. Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
This commit is contained in:
parent
c9128ad6a1
commit
c05b7babed
|
@ -21,6 +21,8 @@
|
|||
#
|
||||
|
||||
topdir = ../../../..
|
||||
|
||||
include $(topdir)/build/config.mk
|
||||
libdir = $(topdir)/objs/$(BUILD)/lib
|
||||
|
||||
PROGRAM_NAME = example_c_decode_file
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#
|
||||
|
||||
topdir = ../../../..
|
||||
|
||||
include $(topdir)/build/config.mk
|
||||
libdir = $(topdir)/objs/$(BUILD)/lib
|
||||
|
||||
PROGRAM_NAME = example_c_encode_file
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#
|
||||
|
||||
topdir = ../../../..
|
||||
|
||||
include $(topdir)/build/config.mk
|
||||
libdir = $(topdir)/objs/$(BUILD)/lib
|
||||
|
||||
PROGRAM_NAME = example_cpp_decode_file
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#
|
||||
|
||||
topdir = ../../../..
|
||||
|
||||
include $(topdir)/build/config.mk
|
||||
libdir = $(topdir)/objs/$(BUILD)/lib
|
||||
|
||||
PROGRAM_NAME = example_cpp_encode_file
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#
|
||||
|
||||
topdir = ../..
|
||||
|
||||
include $(topdir)/build/config.mk
|
||||
libdir = $(topdir)/objs/$(BUILD)/lib
|
||||
|
||||
PROGRAM_NAME = flac
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#
|
||||
|
||||
topdir = ../..
|
||||
|
||||
include $(topdir)/build/config.mk
|
||||
libdir = $(topdir)/objs/$(BUILD)/lib
|
||||
|
||||
PROGRAM_NAME = metaflac
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#
|
||||
|
||||
topdir = ../../..
|
||||
|
||||
include $(topdir)/build/config.mk
|
||||
libdir = $(topdir)/objs/$(BUILD)/lib
|
||||
|
||||
PROGRAM_NAME = test_cuesheet
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#
|
||||
|
||||
topdir = ../../..
|
||||
|
||||
include $(topdir)/build/config.mk
|
||||
libdir = $(topdir)/objs/$(BUILD)/lib
|
||||
|
||||
PROGRAM_NAME = test_picture
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#
|
||||
|
||||
topdir = ../..
|
||||
|
||||
include $(topdir)/build/config.mk
|
||||
libdir = $(topdir)/objs/$(BUILD)/lib
|
||||
|
||||
PROGRAM_NAME = test_libFLAC++
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#
|
||||
|
||||
topdir = ../..
|
||||
|
||||
include $(topdir)/build/config.mk
|
||||
libdir = $(topdir)/objs/$(BUILD)/lib
|
||||
|
||||
PROGRAM_NAME = test_libFLAC
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#
|
||||
|
||||
topdir = ../..
|
||||
|
||||
include $(topdir)/build/config.mk
|
||||
libdir = $(topdir)/objs/$(BUILD)/lib
|
||||
|
||||
PROGRAM_NAME = test_seeking
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
#
|
||||
|
||||
topdir = ../..
|
||||
|
||||
include $(topdir)/build/config.mk
|
||||
libdir = $(topdir)/objs/$(BUILD)/lib
|
||||
|
||||
PROGRAM_NAME = test_streams
|
||||
|
|
Loading…
Reference in New Issue