summaryrefslogtreecommitdiff
path: root/pcr/neo6502/separate_emulators.patch
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/neo6502/separate_emulators.patch')
-rw-r--r--pcr/neo6502/separate_emulators.patch49
1 files changed, 49 insertions, 0 deletions
diff --git a/pcr/neo6502/separate_emulators.patch b/pcr/neo6502/separate_emulators.patch
new file mode 100644
index 000000000..bd1b41bde
--- /dev/null
+++ b/pcr/neo6502/separate_emulators.patch
@@ -0,0 +1,49 @@
+diff --git a/Makefile b/Makefile
+index 4ab01f69..f99b0202 100644
+--- a/Makefile
++++ b/Makefile
+@@ -35,7 +35,20 @@ all:
+
+ # ***************************************************************************************
+ #
+-# Make windows & linux versions
++# Make firmware only
++#
++# ***************************************************************************************
++
++firmware:
++ $(CMAKEDIR) bin
++ $(MAKE) -B -C kernel release
++ $(MAKE) -B -C basic release
++ $(MAKE) -B -C firmware release
++
++
++# ***************************************************************************************
++#
++# Make emulator only
+ #
+ # ***************************************************************************************
+
+@@ -45,6 +58,8 @@ windows:
+ $(MAKE) -B -C basic release
+ $(MAKE) -B -C emulator clean
+ $(MAKE) -B -C emulator ewindows
++ $(MAKE) -B -C examples release
++ $(MAKE) -B -C release documentation
+
+ linux:
+ $(CMAKEDIR) bin
+@@ -52,9 +67,13 @@ linux:
+ $(MAKE) -B -C basic release
+ $(MAKE) -B -C emulator clean
+ $(MAKE) -B -C emulator elinux
++ $(MAKE) -B -C examples release
++ $(MAKE) -B -C release documentation
+
+ macos:
+ make -B -C emulator emacos
++ make -B -C examples release
++ $(MAKE) -B -C release documentation
+
+
+ # ***************************************************************************************