From 887a2ca18638755f74594913b7e07ac41b27e8a6 Mon Sep 17 00:00:00 2001 From: Ole Loots Date: Thu, 23 Aug 2012 00:06:45 +0200 Subject: Added and use PRGSUFFIX to configure executable name. --- atari/Makefile.target | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'atari') diff --git a/atari/Makefile.target b/atari/Makefile.target index 259f5b6a4..cbd8e6ffa 100644 --- a/atari/Makefile.target +++ b/atari/Makefile.target @@ -2,14 +2,20 @@ # Atari target setup # ---------------------------------------------------------------------------- +ifeq ($(ATARI_ARCH),68020-60) +PRGSUFFIX := 000.app +endif + ifeq ($(ATARI_ARCH),68020-60) CFLAGS += -m68020-60 LDFLAGS += -m68020-60 +PRGSUFFIX := 020.app endif ifeq ($(ATARI_ARCH),5475) CFLAGS += -mcpu=5475 LDFLAGS += -mcpu=5475 +PRGSUFFIX := v4e.app endif # non-pkgconfig components @@ -71,6 +77,6 @@ S_ATARI := $(addprefix atari/,$(S_ATARI)) # Note this is deliberately *not* expanded here as common and image # are not yet available SOURCES = $(S_COMMON) $(S_IMAGE) $(S_BROWSER) $(S_ATARI) -EXETARGET := ns$(SUBTARGET).prg +EXETARGET := ns$(SUBTARGET)$(PRGSUFFIX) -- cgit v1.2.3