view colorsmemory/Makefile.aur @ 24:c7e131ce2f14

makefile rm
author Przemyslaw <prymula76@outlook.com>
date Mon, 01 Apr 2024 07:16:40 +0200
parents fff7215ba1e8
children
line wrap: on
line source


prefix=/usr
    
all:
	ant compile
	ant jar
	
clean:
	ant clean

install: build/jar/ColorsMemory.jar
	mkdir -pm 0755 $(DESTDIR)$(prefix)/games
	mkdir -pm 0755 $(DESTDIR)$(prefix)/share/applications
	mkdir -pm 0755 $(DESTDIR)$(prefix)/share/colorsmemory
	mkdir -pm 0755 $(DESTDIR)$(prefix)/share/colorsmemory/icons
	install -m 0644 build/jar/ColorsMemory.jar $(DESTDIR)$(prefix)/games
	install -m 0644 colorsmemory.png $(DESTDIR)$(prefix)/share/colorsmemory/icons
	install -m 0644 ColorsMemory.desktop $(DESTDIR)$(prefix)/share/applications
    
.PHONY: install