summaryrefslogtreecommitdiff
path: root/build/compile.mk
diff options
context:
space:
mode:
authorErik de Castro Lopo <erikd@mega-nerd.com>2014-07-13 21:19:48 +1000
committerErik de Castro Lopo <erikd@mega-nerd.com>2014-09-17 23:21:39 +1000
commitb60f16bbc818729a0cf3b9c22cd6b24e7febd85b (patch)
tree7200c4322b2986b4356ea08cd320df46b3b9a3d3 /build/compile.mk
parentd399e31ec65f0282481108f9c7bc892f6eaf00cb (diff)
downloadflac-b60f16bbc818729a0cf3b9c22cd6b24e7febd85b.tar.gz
Remove old/broken PPC/Altivec code.
* Removes FLAC__lpc_restore_signal_asm_ppc_altivec_16* from lpc.h and stream_decoder.c * Removes PPC-specific code from cpu.c and cpu.h * Removes PPC stuff from libFLAC/Makefile.lite and build/*.mk * Removes as/gas/PPC-specific stuff from configure.ac and libFLAC/Makefile.am* * Removes libFLAC/ppc folder and remove "src/libFLAC/ppc*/Makefile" lines from configure.ac Patch-from: lvqcl <lvqcl.mail@gmail.com>
Diffstat (limited to 'build/compile.mk')
-rw-r--r--build/compile.mk15
1 files changed, 0 insertions, 15 deletions
diff --git a/build/compile.mk b/build/compile.mk
index fb243442..98e128af 100644
--- a/build/compile.mk
+++ b/build/compile.mk
@@ -39,21 +39,6 @@
%.debug.i %.release.i : %.cpp
$(CCC) $(CXXFLAGS) -E $< -o $@
-%.debug.o %.release.o : %.s
-ifeq ($(OS),Darwin)
- #$(CC) -c -arch $(PROC) -Wall -force_cpusubtype_ALL $< -o $@
- $(AS) -arch $(PROC) -force_cpusubtype_ALL $< -o $@
-else
- $(AS) $< -o $@
-endif
-%.debug.pic.o %.release.pic.o : %.s
-ifeq ($(OS),Darwin)
- #$(CC) -c -arch $(PROC) -Wall -force_cpusubtype_ALL $< -o $@
- $(AS) -arch $(PROC) -force_cpusubtype_ALL $< -o $@
-else
- $(AS) $< -o $@
-endif
-
%.debug.o : %.nasm
$(NASM) -f elf -d OBJ_FORMAT_elf -i ia32/ -g $< -o $@
%.release.o : %.nasm