changeset 1207:c461cb49fc55 trunk

[svn] - if mk/rules.mk is missing, run configure to generate it (hopefully you are running the posix target, otherwise I feel sorry for you)
author nenolod
date Wed, 14 Jun 2006 00:07:04 -0700
parents 44d8008500a3
children 8014500e2c37
files ChangeLog Makefile
diffstat 2 files changed, 18 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Jun 14 00:04:06 2006 -0700
+++ b/ChangeLog	Wed Jun 14 00:07:04 2006 -0700
@@ -1,3 +1,14 @@
+2006-06-14 07:04:06 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [1326]
+  - core makefile
+  
+
+  Changes:        Modified:
+  +16 -0          trunk/Makefile  
+  +0 -16          trunk/Makefile.in  
+  +0 -1           trunk/configure.ac  
+
+
 2006-06-14 07:02:18 +0000  William Pitcock <nenolod@nenolod.net>
   revision [1324]
   - hookup buildsystem
--- a/Makefile	Wed Jun 14 00:04:06 2006 -0700
+++ b/Makefile	Wed Jun 14 00:07:04 2006 -0700
@@ -1,8 +1,15 @@
+.SILENT:
+
 include mk/rules.mk
 include mk/objective.mk
 
 SUBDIRS = Plugins libaudacious intl $(SUBDIR_GUESS) audacious audtool po icons skin
 
+mk/rules.mk:
+	@echo "[building rules.mk for posix target, run configure manually if you do not want this]"
+	@sh configure
+	@echo "[complete]"
+
 install-posthook:
 	@if test `whoami` = 'root' && test -z "$(DESTDIR)"; then \
 		echo "[running ldconfig to update system library cache]"; \