summaryrefslogtreecommitdiff
path: root/pcr/neo6502/separate_emulators.patch
blob: bd1b41bde12a2e263302556e6a47ace5309189a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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
 
 
 # ***************************************************************************************