diff options
author | Martijn van Beurden <mvanb1@gmail.com> | 2022-05-18 21:09:38 +0200 |
---|---|---|
committer | Martijn van Beurden <mvanb1@gmail.com> | 2022-05-27 21:59:32 +0200 |
commit | dd4a263406ca87939c11861ac0b0d51a1fca0996 (patch) | |
tree | 9048b00f721ea84e51137367cbf4d515877a1f1c /examples/cpp/decode | |
parent | 1bb80c18da6603e97316c89ebad7f3c73ef6d810 (diff) | |
download | flac-dd4a263406ca87939c11861ac0b0d51a1fca0996.tar.gz |
Remove Makefile.lite build system
Diffstat (limited to 'examples/cpp/decode')
-rw-r--r-- | examples/cpp/decode/file/Makefile.am | 3 | ||||
-rw-r--r-- | examples/cpp/decode/file/Makefile.lite | 44 |
2 files changed, 1 insertions, 46 deletions
diff --git a/examples/cpp/decode/file/Makefile.am b/examples/cpp/decode/file/Makefile.am index 64a9f1ff..1278ebf4 100644 --- a/examples/cpp/decode/file/Makefile.am +++ b/examples/cpp/decode/file/Makefile.am @@ -17,8 +17,7 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. EXTRA_DIST = \ - CMakeLists.txt \ - Makefile.lite + CMakeLists.txt AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include noinst_PROGRAMS = example_cpp_decode_file diff --git a/examples/cpp/decode/file/Makefile.lite b/examples/cpp/decode/file/Makefile.lite deleted file mode 100644 index c835bb46..00000000 --- a/examples/cpp/decode/file/Makefile.lite +++ /dev/null @@ -1,44 +0,0 @@ -# example_cpp_decode_file - Simple FLAC file decoder using libFLAC -# Copyright (C) 2007-2009 Josh Coalson -# Copyright (C) 2011-2016 Xiph.Org Foundation -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License -# as published by the Free Software Foundation; either version 2 -# of the License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License along -# with this program; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -# -# GNU makefile -# - -topdir = ../../../.. - -include $(topdir)/build/config.mk -libdir = $(topdir)/objs/$(BUILD)/lib - -PROGRAM_NAME = example_cpp_decode_file - -INCLUDES = -I$(topdir)/include - -ifeq ($(OS),Darwin) - EXPLICIT_LIBS = $(libdir)/libFLAC++.a $(libdir)/libFLAC.a $(OGG_EXPLICIT_LIBS) -lm -else - LIBS = -lFLAC++ -lFLAC $(OGG_LIBS) -lm -endif - -SRCS_CPP = main.cpp - -include $(topdir)/build/exe.mk - -LINK = $(CCC) $(LINKAGE) - -# DO NOT DELETE THIS LINE -- make depend depends on it. |