X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=Makefile;h=c49be4bf2b1789593c00224ef3853abc2b44d458;hp=8fd11611cc1edb049a2d4073a2212da17fee2272;hb=7bae366b111b90929813862ab38b42ff59170ca3;hpb=0ce16148cb56c6c3491ea6042e45c9371591b168 diff --git a/Makefile b/Makefile index 8fd1161..c49be4b 100644 --- a/Makefile +++ b/Makefile @@ -15,11 +15,11 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -prefix = /usr +prefix = /usr/local exec_prefix = $(prefix) -datadir = $(prefix)/share/games -pkgdatadir = $(datadir)/vor +datarootdir = $(prefix)/share/games +pkgdatadir = $(datarootdir)/vor bindir = $(exec_prefix)/games CFLAGS := -Wall -O3 @@ -64,8 +64,7 @@ data: $(graphics) program: vor %.o: %.c - @echo compiling $@ from $< - @$(CC) $(cflags) -c -o $@ $< + $(CC) $(cflags) -c -o $@ $< $(my_objects): config.h @@ -90,8 +89,7 @@ sound.o: sound.h args.h common.h sprite.o: sprite.h common.h vor: $(objects) - @echo linking $@ from $^ - @$(CC) $^ $(ldflags) -o $@ + $(CC) $^ $(ldflags) -o $@ include gfx.mk @@ -112,15 +110,15 @@ data-clean: mkinstalldirs: if [ ! -d $(DESTDIR)$(pkgdatadir) ]; then mkdir $(DESTDIR)$(pkgdatadir); fi -rminstalldirs: +rminstalldirs: uninstall-data if [ -d $(DESTDIR)$(pkgdatadir) ]; then rmdir $(DESTDIR)$(pkgdatadir); fi install: all mkinstalldirs install-program install-data install-program: program - $(INSTALL_PROGRAM) ./vor $(DESTDIR)$(bindir) + $(INSTALL_PROGRAM) ./vor $(DESTDIR)$(bindir)/ -install-data: data +install-data: data mkinstalldirs $(INSTALL_DATA) ./data/*.png $(DESTDIR)$(pkgdatadir)/ $(INSTALL_DATA) ./data/*.wav $(DESTDIR)$(pkgdatadir)/ $(INSTALL_DATA) ./data/*.xm $(DESTDIR)$(pkgdatadir)/