|
@@ -1,5 +1,8 @@
|
|
|
|
|
|
-all: door32 testdoor testdoor/art.go space-ace/space-ace
|
|
|
|
|
|
+all: door32 testdoor testdoor/art.go space-ace/space-ace yt2000/yt2000 mines/mines
|
|
|
|
+
|
|
|
|
+mines/mines: mines/*.go
|
|
|
|
+ cd mines; go build
|
|
|
|
|
|
# testdoor: testdoor/testdoor testdoor/testdoor.exe
|
|
# testdoor: testdoor/testdoor testdoor/testdoor.exe
|
|
testdoor: testdoor/testdoor
|
|
testdoor: testdoor/testdoor
|
|
@@ -17,7 +20,8 @@ testdoor/fonts.go: font-out
|
|
# echo "package main\n\nimport \"red-green/door\"\n\n" > testdoor/fonts.go
|
|
# echo "package main\n\nimport \"red-green/door\"\n\n" > testdoor/fonts.go
|
|
# ./font-out -f "Amazon Cyan,Medieval,Anarchy Blue,Unchained,Asylum,ArmageonRed,BrainDmgBlu,Boner,Descent,Remorse,Dungeon" TDFONTS.TDF TDFONTS2.TDF TDFONTS9.TDF > testdoor/fonts.go
|
|
# ./font-out -f "Amazon Cyan,Medieval,Anarchy Blue,Unchained,Asylum,ArmageonRed,BrainDmgBlu,Boner,Descent,Remorse,Dungeon" TDFONTS.TDF TDFONTS2.TDF TDFONTS9.TDF > testdoor/fonts.go
|
|
# ./font-out -f "Amazon Cyan,Medieval,Anarchy Blue,Unchained,Asylum,Armageddon,ArmageonRed,BrainDmgBlu,Boner,Descent,Remorse,Dungeon" TDFONTS.TDF TDFONTS2.TDF TDFONTS9.TDF > testdoor/fonts.go
|
|
# ./font-out -f "Amazon Cyan,Medieval,Anarchy Blue,Unchained,Asylum,Armageddon,ArmageonRed,BrainDmgBlu,Boner,Descent,Remorse,Dungeon" TDFONTS.TDF TDFONTS2.TDF TDFONTS9.TDF > testdoor/fonts.go
|
|
- ./font-out -f "Amazon Cyan,Anarchy Blue,Unchained,Asylum,Armageddon,ArmageonRed,BrainDmgBlu,Boner,Descent,Remorse,Dungeon" TDFONTS.TDF TDFONTS2.TDF TDFONTS9.TDF > testdoor/fonts.go
|
|
|
|
|
|
+ # ./font-out -f "Amazon Cyan,Anarchy Blue,Unchained,Asylum,Armageddon,ArmageonRed,BrainDmgBlu,Boner,Descent,Remorse,Dungeon" TDFONTS.TDF TDFONTS2.TDF TDFONTS9.TDF > testdoor/fonts.go
|
|
|
|
+ ./font-out -f "Amazon Cyan,Anarchy Blue,Unchained,Asylum,ArmageonRed,BrainDmgBlu,Boner,Descent,Remorse,Dungeon" TDFONTS.TDF TDFONTS2.TDF TDFONTS9.TDF > testdoor/fonts.go
|
|
# cat *_font.go >> testdoor/fonts.go
|
|
# cat *_font.go >> testdoor/fonts.go
|
|
# rm *_font.go
|
|
# rm *_font.go
|
|
|
|
|
|
@@ -48,3 +52,16 @@ space-ace/space-ace: space-ace/*.go door/*.go space-ace/space.go
|
|
# ./font-out -f Unchained,Asylum,ArmageonRed,BrainDmgBlu TDFONTS2.TDF
|
|
# ./font-out -f Unchained,Asylum,ArmageonRed,BrainDmgBlu TDFONTS2.TDF
|
|
# ./font-out -f Boner,Descent,Remorse,Dungeon TDFONTS9.TDF
|
|
# ./font-out -f Boner,Descent,Remorse,Dungeon TDFONTS9.TDF
|
|
|
|
|
|
|
|
+yt2000/ytopen.go: yt2000/ytopen.ans
|
|
|
|
+ ./ansi-to-go/ansi-to-go yt2000/ytopen.ans > yt2000/ytopen.go
|
|
|
|
+
|
|
|
|
+yt2000/cyberwar.go:
|
|
|
|
+ ./font-util/font-util extract -f CyberWar *.TDF > yt2000/cyberwar.go
|
|
|
|
+
|
|
|
|
+yt2000/armagedonred.go:
|
|
|
|
+ ./font-util/font-util extract -f ArmagedonRed *.TDF > yt2000/armagedonred.go
|
|
|
|
+
|
|
|
|
+yt2000/yt2000: yt2000/yt.go yt2000/ytopen.go yt2000/cyberwar.go
|
|
|
|
+ cd yt2000; go build
|
|
|
|
+
|
|
|
|
+
|