standalone-exe.mk: Auto-add values for PROJECT and PREFIX

This commit is contained in:
Jan Lindemann 2007-02-23 01:05:56 +00:00 committed by Jan Lindemann
commit 1070bf4c90

View file

@ -7,6 +7,14 @@ ifeq ($(EXE),)
EXE = $(notdir $(shell pwd))
endif
ifeq ($(PROJECT),)
PROJECT = $(notdir $(shell pwd))
endif
ifeq ($(PREFIX),)
PREFIX = $(HOME)/opt/$(PROJECT)
endif
include $(MODDIR)/make/run.mk
include $(MODDIR)/make/depend.mk