From 814c154b4c3b6cdf4fcb4570f24aa0aad8e1822d Mon Sep 17 00:00:00 2001 From: Alexey 'Cluster' Avdyukhin Date: Tue, 25 Oct 2022 23:23:08 +0400 Subject: Demos makefiles changed so it's possible to specify executables now --- Examples/mmc3_split2_animation/Makefile | 6 +++--- Examples/mmc3_split4/Makefile | 6 +++--- Examples/nrom_group_scroll/Makefile | 6 +++--- Examples/nrom_simple/Makefile | 6 +++--- Examples/nrom_simple_offset/Makefile | 6 +++--- Examples/nrom_split/Makefile | 6 +++--- Examples/nrom_split_lossy/Makefile | 6 +++--- Examples/sprites8x16/Makefile | 6 +++--- Examples/sprites8x8/Makefile | 6 +++--- 9 files changed, 27 insertions(+), 27 deletions(-) diff --git a/Examples/mmc3_split2_animation/Makefile b/Examples/mmc3_split2_animation/Makefile index 4b75587..65c5474 100644 --- a/Examples/mmc3_split2_animation/Makefile +++ b/Examples/mmc3_split2_animation/Makefile @@ -1,6 +1,6 @@ -NESASM=nesasm -EMU=fceux64 -TILER=nestiler +NESASM?=nesasm +EMU?=fceux64 +TILER?=nestiler SOURCE=main.asm EXECUTABLE=mmc3_split2_animation.nes diff --git a/Examples/mmc3_split4/Makefile b/Examples/mmc3_split4/Makefile index 1933e05..82bf3bf 100644 --- a/Examples/mmc3_split4/Makefile +++ b/Examples/mmc3_split4/Makefile @@ -1,6 +1,6 @@ -NESASM=nesasm -EMU=fceux64 -TILER=nestiler +NESASM?=nesasm +EMU?=fceux64 +TILER?=nestiler SOURCE=main.asm EXECUTABLE=mmc3_split4.nes diff --git a/Examples/nrom_group_scroll/Makefile b/Examples/nrom_group_scroll/Makefile index 40c988c..7035090 100644 --- a/Examples/nrom_group_scroll/Makefile +++ b/Examples/nrom_group_scroll/Makefile @@ -1,6 +1,6 @@ -NESASM=nesasm -EMU=fceux64 -TILER=nestiler +NESASM?=nesasm +EMU?=fceux64 +TILER?=nestiler SOURCE=main.asm EXECUTABLE=nrom_group_scroll.nes diff --git a/Examples/nrom_simple/Makefile b/Examples/nrom_simple/Makefile index ad04963..988128a 100644 --- a/Examples/nrom_simple/Makefile +++ b/Examples/nrom_simple/Makefile @@ -1,6 +1,6 @@ -NESASM=nesasm -EMU=fceux64 -TILER=nestiler +NESASM?=nesasm +EMU?=fceux64 +TILER?=nestiler SOURCE=main.asm EXECUTABLE=nrom_simple.nes diff --git a/Examples/nrom_simple_offset/Makefile b/Examples/nrom_simple_offset/Makefile index 84b2178..39ce9e7 100644 --- a/Examples/nrom_simple_offset/Makefile +++ b/Examples/nrom_simple_offset/Makefile @@ -1,6 +1,6 @@ -NESASM=nesasm -EMU=fceux64 -TILER=nestiler +NESASM?=nesasm +EMU?=fceux64 +TILER?=nestiler SOURCE=main.asm EXECUTABLE=nrom_simple.nes diff --git a/Examples/nrom_split/Makefile b/Examples/nrom_split/Makefile index 0f90517..865d6f7 100644 --- a/Examples/nrom_split/Makefile +++ b/Examples/nrom_split/Makefile @@ -1,6 +1,6 @@ -NESASM=nesasm -EMU=fceux64 -TILER=nestiler +NESASM?=nesasm +EMU?=fceux64 +TILER?=nestiler SOURCE=main.asm EXECUTABLE=nrom_split.nes diff --git a/Examples/nrom_split_lossy/Makefile b/Examples/nrom_split_lossy/Makefile index fa1032c..3ead29a 100644 --- a/Examples/nrom_split_lossy/Makefile +++ b/Examples/nrom_split_lossy/Makefile @@ -1,6 +1,6 @@ -NESASM=nesasm -EMU=fceux64 -TILER=nestiler +NESASM?=nesasm +EMU?=fceux64 +TILER?=nestiler SOURCE=main.asm EXECUTABLE=nrom_split_lossy.nes HEIGHT1=128 diff --git a/Examples/sprites8x16/Makefile b/Examples/sprites8x16/Makefile index d64cec7..da7cbb1 100644 --- a/Examples/sprites8x16/Makefile +++ b/Examples/sprites8x16/Makefile @@ -1,6 +1,6 @@ -NESASM=nesasm -EMU=fceux64 -TILER=nestiler +NESASM?=nesasm +EMU?=fceux64 +TILER?=nestiler SOURCE=main.asm EXECUTABLE=sprites8x16.nes diff --git a/Examples/sprites8x8/Makefile b/Examples/sprites8x8/Makefile index 80dce3b..de10d49 100644 --- a/Examples/sprites8x8/Makefile +++ b/Examples/sprites8x8/Makefile @@ -1,6 +1,6 @@ -NESASM=nesasm -EMU=fceux64 -TILER=nestiler +NESASM?=nesasm +EMU?=fceux64 +TILER?=nestiler SOURCE=main.asm EXECUTABLE=sprites8x8.nes -- cgit v1.2.3