From b5de3be503bc9fac73ffbcaf6ce92970195c122f Mon Sep 17 00:00:00 2001 From: Matt Messier Date: Fri, 4 May 2007 20:51:33 -0400 Subject: Begin cleaning up compiler command-line flags - Removed debug related targets from all Makefiles. Debug builds are now fully controlled by --enable-debug passed to configure - Disable optimizations by default when configuring with --enable-debug - Added --enable-profiling for building profile builds. This has problems with optimizations currently, but that'll get taken care of over time. - Initialize ASFLAGS/CFLAGS/CPPFLAGS/OBJCFLAGS/LDFLAGS early so that autoconf defaults don't come into play. - Added some additional commentary to configure.ac --- misc/Makefile.common | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'misc') diff --git a/misc/Makefile.common b/misc/Makefile.common index a3fe43de6..6df3b9228 100644 --- a/misc/Makefile.common +++ b/misc/Makefile.common @@ -41,16 +41,6 @@ pass1: pass2: @$(MAKE) MULTIPASS_CFLAGS="$(PASS2_CFLAGS)" -debug: - @$(MAKE) CFLAGS="$(DEBUG_CFLAGS)" - -install-debug: debug - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - @list='$(SUBDIRS)'; for subdir in $$list; do \ - (cd $$subdir && $(MAKE) $@) || exit; \ - done; - $(MAKE) $(AM_MAKEFLAGS) install-data-hook - uninstall-hook: @list='$(xineplug_LTLIBRARIES)'; for p in $$list; do \ p="`echo $$p | sed -e 's/\.la$$/\.so/g;s|^.*/||'`"; \ -- cgit v1.2.3