JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
made "make install" work for non-root users
[vor.git] / Makefile
index c7f6941..a3c3847 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -42,7 +42,7 @@ rocks := $(rocks:%=data/rock%.png)
 graphics := data/ship.png data/icon.png data/life.png data/font.png $(rocks)
 
 INSTALL := install
-INSTALL_PROGRAM := $(INSTALL) -o games -g games
+INSTALL_PROGRAM := $(INSTALL) $(shell sh -c 'test "$$UID" "=" "0" && echo "-o games -g games"')
 INSTALL_DATA := $(INSTALL) -m 644
 
 
@@ -51,6 +51,8 @@ INSTALL_DATA := $(INSTALL) -m 644
 .PHONY: program program-clean install-program uninstall-program
 .PHONY: data data-clean install-data uninstall-data
 
+.INTERMEDIATE: font_guts font_guts.pov
+
 all: program data
 
 data: $(graphics)