aboutsummaryrefslogtreecommitdiff
path: root/games/Makefile
blob: 238da4150402a266f7d8f73f30399d9495df5b09 (plain) (blame)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
    COMMENT = Games and related software

    SUBDIR += 0ad
    SUBDIR += 0verkill
    SUBDIR += 2048
    SUBDIR += 2048-qt
    SUBDIR += 3dc
    SUBDIR += 3dpong
    SUBDIR += 3omns
    SUBDIR += 54321
    SUBDIR += 7kaa
    SUBDIR += 90secondportraits
    SUBDIR += CaribbeanStud
    SUBDIR += DDNet
    SUBDIR += HeroesOfMightAndMagic
    SUBDIR += KnightCap
    SUBDIR += NBlood
    SUBDIR += OpenDiablo2
    SUBDIR += OpenLara
    SUBDIR += OpenTomb
    SUBDIR += abbayedesmorts
    SUBDIR += abe
    SUBDIR += abstreet
    SUBDIR += abuse_sdl
    SUBDIR += ace-of-penguins
    SUBDIR += acm
    SUBDIR += adonthell
    SUBDIR += adonthell-wastesedge
    SUBDIR += aestats
    SUBDIR += affenspiel
    SUBDIR += afternoonstalker
    SUBDIR += agame
    SUBDIR += ags
    SUBDIR += aisleriot
    SUBDIR += aklabeth
    SUBDIR += alephone
    SUBDIR += alephone-data
    SUBDIR += alephone-scenarios
    SUBDIR += alex4
    SUBDIR += alienarena
    SUBDIR += alienarena-data
    SUBDIR += alienblaster
    SUBDIR += alienwave
    SUBDIR += allacrost
    SUBDIR += amoebax
    SUBDIR += an
    SUBDIR += angband
    SUBDIR += anki
    SUBDIR += antipolix
    SUBDIR += aop
    SUBDIR += apoolGL
    SUBDIR += apricots
    SUBDIR += aquaria
    SUBDIR += armagetronad
    SUBDIR += arx-libertatis
    SUBDIR += ascii-invaders
    SUBDIR += asciiquarium
    SUBDIR += assaultcube
    SUBDIR += asteroids3d
    SUBDIR += astromenace
    SUBDIR += asylum
    SUBDIR += atanks
    SUBDIR += atomix
    SUBDIR += atr3d
    SUBDIR += atris
    SUBDIR += atris-sounds
    SUBDIR += auralquiz
    SUBDIR += automuteus
    SUBDIR += avanor
    SUBDIR += avoision
    SUBDIR += avp
    SUBDIR += awale
    SUBDIR += awele
    SUBDIR += ballerburg
    SUBDIR += banihstypos
    SUBDIR += barony
    SUBDIR += barrage
    SUBDIR += bass
    SUBDIR += bastet
    SUBDIR += battalion
    SUBDIR += battletanks
    SUBDIR += belooted
    SUBDIR += beret
    SUBDIR += billardgl
    SUBDIR += biloba
    SUBDIR += biniax2
    SUBDIR += biorythm
    SUBDIR += bitefusion
    SUBDIR += black-box
    SUBDIR += black-hole-solver
    SUBDIR += blackjackclient
    SUBDIR += blackshadeselite
    SUBDIR += blinken
    SUBDIR += blinkensisters
    SUBDIR += blobby
    SUBDIR += blobwars
    SUBDIR += block
    SUBDIR += blockattack
    SUBDIR += blockout
    SUBDIR += blockrage
    SUBDIR += blokish
    SUBDIR += bloodfrontier
    SUBDIR += bluemoon
    SUBDIR += bomber
    SUBDIR += bomberclone
    SUBDIR += bombherman
    SUBDIR += bomns
    SUBDIR += bovo
    SUBDIR += braincurses
    SUBDIR += brainparty
    SUBDIR += brainworkshop
    SUBDIR += brickout
    SUBDIR += brickshooter
    SUBDIR += brikx
    SUBDIR += briquolo
    SUBDIR += brumbrumrally
    SUBDIR += brutalchess
    SUBDIR += bs
    SUBDIR += bsdgames
    SUBDIR += bsdtris
    SUBDIR += bsp
    SUBDIR += bstone
    SUBDIR += bubble-chains
    SUBDIR += bugsquish
    SUBDIR += bugsx
    SUBDIR += bumprace
    SUBDIR += burgerspace
    SUBDIR += burrtools
    SUBDIR += bzflag
    SUBDIR += bzflag-server
    SUBDIR += cake
    SUBDIR += caph
    SUBDIR += cardpics
    SUBDIR += cataclysm-dda
    SUBDIR += cataclysm-dda-tiles
    SUBDIR += catesc
    SUBDIR += cave9
    SUBDIR += cdogs-sdl
    SUBDIR += cgoban
    SUBDIR += chapping
    SUBDIR += chessx
    SUBDIR += chocolate-doom
    SUBDIR += chroma
    SUBDIR += chromium-bsu
    SUBDIR += circuslinux
    SUBDIR += cockatrice
    SUBDIR += coffeebreak
    SUBDIR += colobot
    SUBDIR += colorcode
    SUBDIR += columns
    SUBDIR += concentration
    SUBDIR += connectagram
    SUBDIR += connectfive
    SUBDIR += construo
    SUBDIR += coronapoker
    SUBDIR += corsix-th
    SUBDIR += cosmosmash
    SUBDIR += cowsay
    SUBDIR += crack-attack
    SUBDIR += craft
    SUBDIR += crafty
    SUBDIR += crashtest
    SUBDIR += cretan-hubris
    SUBDIR += crimson
    SUBDIR += crispy-doom
    SUBDIR += criticalmass
    SUBDIR += critterding
    SUBDIR += crossfire-client
    SUBDIR += crrcsim
    SUBDIR += cryptoslam
    SUBDIR += csmash
    SUBDIR += ctris
    SUBDIR += cube
    SUBDIR += cultivation
    SUBDIR += cursive
    SUBDIR += cutemaze
    SUBDIR += cuyo
    SUBDIR += d2x
    SUBDIR += dMagnetic
    SUBDIR += dangen
    SUBDIR += darkplaces
    SUBDIR += defendguin
    SUBDIR += devilutionX
    SUBDIR += dhewm3
    SUBDIR += diaspora
    SUBDIR += digger-vgl
    SUBDIR += divide-and-succeed
    SUBDIR += dmjava
    SUBDIR += dobutsu
    SUBDIR += dodgindiamond2
    SUBDIR += domination
    SUBDIR += dontspace
    SUBDIR += doom
    SUBDIR += doom-data
    SUBDIR += doom-freedoom
    SUBDIR += doom-hacx
    SUBDIR += doom-hr
    SUBDIR += doom-hr2
    SUBDIR += doom-wolfendoom
    SUBDIR += doomlegacy
    SUBDIR += doomsday
    SUBDIR += dose-response
    SUBDIR += dreamchess
    SUBDIR += duel
    SUBDIR += dunelegacy
    SUBDIR += dungeon
    SUBDIR += dungeoncrawl
    SUBDIR += dustrac
    SUBDIR += dxx-rebirth
    SUBDIR += easyrpg-player
    SUBDIR += eboard
    SUBDIR += ecwolf
    SUBDIR += edge
    SUBDIR += editss
    SUBDIR += eduke32
    SUBDIR += egl
    SUBDIR += egoboo
    SUBDIR += eif
    SUBDIR += eights
    SUBDIR += einstein
    SUBDIR += el
    SUBDIR += el-data
    SUBDIR += emptyepsilon
    SUBDIR += endgame-singularity
    SUBDIR += endgame-singularity-music
    SUBDIR += endless-sky
    SUBDIR += endless-sky-high-dpi
    SUBDIR += enigma
    SUBDIR += ensemblist
    SUBDIR += entombed
    SUBDIR += enygma
    SUBDIR += epiphany-game
    SUBDIR += etracer
    SUBDIR += euchre
    SUBDIR += eureka
    SUBDIR += evilfinder
    SUBDIR += evq3
    SUBDIR += excido
    SUBDIR += exhaust
    SUBDIR += exhaust-doc
    SUBDIR += exhaust-ma
    SUBDIR += exult
    SUBDIR += ezquake
    SUBDIR += f1spirit-remake
    SUBDIR += fairymax
    SUBDIR += falconseye
    SUBDIR += fargoal
    SUBDIR += fbg2
    SUBDIR += fheroes2
    SUBDIR += fightorperish
    SUBDIR += fillets-ng
    SUBDIR += filters
    SUBDIR += fishsupper
    SUBDIR += five-or-more
    SUBDIR += fkiss
    SUBDIR += flare-engine
    SUBDIR += flare-game
    SUBDIR += flightgear
    SUBDIR += flightgear-aircraft
    SUBDIR += flightgear-data
    SUBDIR += flightgear-mb339-pan
    SUBDIR += flightgear-terragear
    SUBDIR += flobopuyo
    SUBDIR += flyhard
    SUBDIR += flying
    SUBDIR += fmars
    SUBDIR += foobillard
    SUBDIR += formido
    SUBDIR += fortunate
    SUBDIR += fotaq
    SUBDIR += four-in-a-row
    SUBDIR += freeblocks
    SUBDIR += freecell-solver
    SUBDIR += freeciv
    SUBDIR += freeciv-nox11
    SUBDIR += freecol
    SUBDIR += freedink
    SUBDIR += freedink-data
    SUBDIR += freedink-dfarc
    SUBDIR += freedink-engine
    SUBDIR += freedoko
    SUBDIR += freedroid
    SUBDIR += freedroidrpg
    SUBDIR += freeminer
    SUBDIR += freeminer-default
    SUBDIR += freeorion
    SUBDIR += freesweep
    SUBDIR += freesynd
    SUBDIR += freetennis
    SUBDIR += fretsonfire
    SUBDIR += fretsonfire-data
    SUBDIR += frikqcc
    SUBDIR += frogatto
    SUBDIR += frotz
    SUBDIR += frozen-bubble
    SUBDIR += fs2open
    SUBDIR += funnyboat
    SUBDIR += galaxis
    SUBDIR += galaxyhack
    SUBDIR += garden-of-coloured-lights
    SUBDIR += gbrainy
    SUBDIR += gcompris-qt
    SUBDIR += gemdropx
    SUBDIR += genact
    SUBDIR += gigalomania
    SUBDIR += gillo
    SUBDIR += gl-117
    SUBDIR += glaxium
    SUBDIR += glbsp
    SUBDIR += glest
    SUBDIR += glest-data
    SUBDIR += glightoff
    SUBDIR += glmaze
    SUBDIR += glsfcave
    SUBDIR += gltron
    SUBDIR += gmastermind
    SUBDIR += gmines
    SUBDIR += gnome-2048
    SUBDIR += gnome-chess
    SUBDIR += gnome-games
    SUBDIR += gnome-klotski
    SUBDIR += gnome-mahjongg
    SUBDIR += gnome-mines
    SUBDIR += gnome-nibbles
    SUBDIR += gnome-robots
    SUBDIR += gnome-sudoku
    SUBDIR += gnome-taquin
    SUBDIR += gnome-tetravex
    SUBDIR += gnubg
    SUBDIR += gnubik
    SUBDIR += gnuchess
    SUBDIR += gnudoku
    SUBDIR += gnugo
    SUBDIR += gnujump
    SUBDIR += gnurobbo
    SUBDIR += gnurobots
    SUBDIR += gnushogi
    SUBDIR += gnustep-ladder
    SUBDIR += gnustep-sudoku
    SUBDIR += gogrepo
    SUBDIR += gogui
    SUBDIR += golddig
    SUBDIR += golly
    SUBDIR += gomoku
    SUBDIR += goonies
    SUBDIR += gottet
    SUBDIR += gracer
    SUBDIR += granatier
    SUBDIR += greed
    SUBDIR += griels-quest
    SUBDIR += grubik
    SUBDIR += gshisen
    SUBDIR += gti
    SUBDIR += gtkatlantic
    SUBDIR += gtkballs
    SUBDIR += gtkevemon
    SUBDIR += gtkradiant
    SUBDIR += gtypist
    SUBDIR += gunfudeadlands
    SUBDIR += gzdoom
    SUBDIR += hangman
    SUBDIR += hedgewars
    SUBDIR += hedgewars-server
    SUBDIR += help_hannahs_horse
    SUBDIR += heretic
    SUBDIR += heroes
    SUBDIR += hex-a-hop
    SUBDIR += hexalate
    SUBDIR += hexxagon
    SUBDIR += highmoon
    SUBDIR += hinversi
    SUBDIR += hitori
    SUBDIR += hllib
    SUBDIR += holotz-castle
    SUBDIR += homura
    SUBDIR += hoverboard-sdl
    SUBDIR += hs-scroll
    SUBDIR += hypatia_engine
    SUBDIR += hyperrogue
    SUBDIR += iagno
    SUBDIR += icbm3d
    SUBDIR += icebreaker
    SUBDIR += iceicepenguin
    SUBDIR += impossible_mission_puzzle
    SUBDIR += inform7
    SUBDIR += instead
    SUBDIR += interlogic
    SUBDIR += ioquake3
    SUBDIR += ioquake3-server
    SUBDIR += iortcw
    SUBDIR += iqpuzzle
    SUBDIR += irrlamb
    SUBDIR += ishido
    SUBDIR += ivan
    SUBDIR += jaggedalliance2
    SUBDIR += java-games-suite
    SUBDIR += jchessboard
    SUBDIR += jfk
    SUBDIR += jfsw
    SUBDIR += jigsaw
    SUBDIR += jigzo
    SUBDIR += jin
    SUBDIR += jinput
    SUBDIR += joequake
    SUBDIR += jtans
    SUBDIR += julius
    SUBDIR += jumpnbump
    SUBDIR += jutils
    SUBDIR += jvgs
    SUBDIR += jzip
    SUBDIR += kanagram
    SUBDIR += kapman
    SUBDIR += kartofel
    SUBDIR += katomic
    SUBDIR += kblackbox
    SUBDIR += kblocks
    SUBDIR += kbounce
    SUBDIR += kbreakout
    SUBDIR += kdegames
    SUBDIR += kdiamond
    SUBDIR += keeperrl
    SUBDIR += kevedit
    SUBDIR += kfourinline
    SUBDIR += kgoldrunner
    SUBDIR += khangman
    SUBDIR += kigo
    SUBDIR += killbots
    SUBDIR += kiriki
    SUBDIR += kjumpingcube
    SUBDIR += klavaro
    SUBDIR += klickety
    SUBDIR += klines
    SUBDIR += klondike
    SUBDIR += kmahjongg
    SUBDIR += kmines
    SUBDIR += knavalbattle
    SUBDIR += knetwalk
    SUBDIR += knights
    SUBDIR += kobodeluxe
    SUBDIR += kodi-addon-game.libretro
    SUBDIR += kodi-addon-game.libretro.beetle-psx
    SUBDIR += kodi-addon-game.libretro.genplus
    SUBDIR += kodi-addon-game.libretro.pcsx-rearmed
    SUBDIR += kodi-addon-game.libretro.picodrive
    SUBDIR += kolf
    SUBDIR += kollision
    SUBDIR += konquest
    SUBDIR += kpat
    SUBDIR += krank
    SUBDIR += kreversi
    SUBDIR += kshisen
    SUBDIR += ksirk
    SUBDIR += ksnakeduel
    SUBDIR += kspaceduel
    SUBDIR += ksquares
    SUBDIR += ksudoku
    SUBDIR += ktuberling
    SUBDIR += kubrick
    SUBDIR += kuklomenos
    SUBDIR += ladder
    SUBDIR += lander
    SUBDIR += lapispuzzle
    SUBDIR += lbreakout
    SUBDIR += lbreakout2
    SUBDIR += ldmud
    SUBDIR += leela-zero
    SUBDIR += legend-of-edgar
    SUBDIR += legesmotus
    SUBDIR += lexter
    SUBDIR += lgeneral
    SUBDIR += libgnome-games-support
    SUBDIR += libkdegames
    SUBDIR += libkmahjongg
    SUBDIR += liblcf
    SUBDIR += libmaitretarot
    SUBDIR += libmanette
    SUBDIR += libmt_client
    SUBDIR += libretro
    SUBDIR += libretro-2048
    SUBDIR += libretro-beetle_bsnes
    SUBDIR += libretro-beetle_gba
    SUBDIR += libretro-beetle_lynx
    SUBDIR += libretro-beetle_ngp
    SUBDIR += libretro-beetle_pce
    SUBDIR += libretro-beetle_pce_fast
    SUBDIR += libretro-beetle_pcfx
    SUBDIR += libretro-beetle_psx
    SUBDIR += libretro-beetle_supergrafx
    SUBDIR += libretro-beetle_vb
    SUBDIR += libretro-beetle_wswan
    SUBDIR += libretro-bluemsx
    SUBDIR += libretro-cap32
    SUBDIR += libretro-core-info
    SUBDIR += libretro-desmume2015
    SUBDIR += libretro-dosbox
    SUBDIR += libretro-emux
    SUBDIR += libretro-fbalpha
    SUBDIR += libretro-fbneo
    SUBDIR += libretro-fceumm
    SUBDIR += libretro-fmsx
    SUBDIR += libretro-fuse
    SUBDIR += libretro-gambatte
    SUBDIR += libretro-genesis_plus_gx
    SUBDIR += libretro-gpsp
    SUBDIR += libretro-gw
    SUBDIR += libretro-handy
    SUBDIR += libretro-hatari
    SUBDIR += libretro-mame2000
    SUBDIR += libretro-mame2003
    SUBDIR += libretro-mame2003_plus
    SUBDIR += libretro-mgba
    SUBDIR += libretro-mu
    SUBDIR += libretro-nestopia
    SUBDIR += libretro-nxengine
    SUBDIR += libretro-o2em
    SUBDIR += libretro-opera
    SUBDIR += libretro-paralleln64
    SUBDIR += libretro-pcsx_rearmed
    SUBDIR += libretro-picodrive
    SUBDIR += libretro-play
    SUBDIR += libretro-prboom
    SUBDIR += libretro-prosystem
    SUBDIR += libretro-px68k
    SUBDIR += libretro-quicknes
    SUBDIR += libretro-scummvm
    SUBDIR += libretro-shaders-glsl
    SUBDIR += libretro-shaders-slang
    SUBDIR += libretro-snes9x
    SUBDIR += libretro-snes9x2005
    SUBDIR += libretro-snes9x2010
    SUBDIR += libretro-stella2014
    SUBDIR += libretro-tgbdual
    SUBDIR += libretro-tyrquake
    SUBDIR += libretro-uae
    SUBDIR += libretro-vbanext
    SUBDIR += libretro-vecx
    SUBDIR += libretro-virtualjaguar
    SUBDIR += libretro-xrick
    SUBDIR += libretro-yabause
    SUBDIR += libshhcards
    SUBDIR += libtmcg
    SUBDIR += lightsoff
    SUBDIR += lincity
    SUBDIR += lincity-ng
    SUBDIR += linux-doom3
    SUBDIR += linux-doom3-demo
    SUBDIR += linux-dwarffortress
    SUBDIR += linux-enemyterritory
    SUBDIR += linux-enemyterritory-jaymod
    SUBDIR += linux-enemyterritory-shrub
    SUBDIR += linux-enemyterritory-tce
    SUBDIR += linux-etqw-demo-server
    SUBDIR += linux-etqw-server
    SUBDIR += linux-nerogame
    SUBDIR += linux-nwnclient
    SUBDIR += linux-quake3
    SUBDIR += linux-quake3-demo
    SUBDIR += linux-quake4
    SUBDIR += linux-quake4-demo
    SUBDIR += linux-ssamtfe
    SUBDIR += linux-ssamtse
    SUBDIR += linux-steam-utils
    SUBDIR += linux-unigine-heaven
    SUBDIR += linux-unigine-valley
    SUBDIR += linux-unrealgold
    SUBDIR += linux-ut
    SUBDIR += linux-ut2003-demo
    SUBDIR += linux-virtual-jay-peak
    SUBDIR += linwarrior
    SUBDIR += lizzie
    SUBDIR += lm-solve
    SUBDIR += lmarbles
    SUBDIR += lmpc
    SUBDIR += lolcat
    SUBDIR += lordsawar
    SUBDIR += lpairs
    SUBDIR += lskat
    SUBDIR += ltris
    SUBDIR += lugaru
    SUBDIR += luola
    SUBDIR += lwjgl
    SUBDIR += macopix
    SUBDIR += madbomber
    SUBDIR += maelstrom
    SUBDIR += magiccube4d
    SUBDIR += magicmaze
    SUBDIR += mahjong
    SUBDIR += maitretarot
    SUBDIR += manaplus
    SUBDIR += mancala
    SUBDIR += mangband
    SUBDIR += marblemarcher
    SUBDIR += mari0
    SUBDIR += masterserver
    SUBDIR += maxr
    SUBDIR += meandmyshadow
    SUBDIR += megaglest
    SUBDIR += megaglest-data
    SUBDIR += megamario
    SUBDIR += memonix
    SUBDIR += meqcc
    SUBDIR += meritous
    SUBDIR += mindfocus
    SUBDIR += minecraft-client
    SUBDIR += minecraft-server
    SUBDIR += minerbold
    SUBDIR += minetest
    SUBDIR += minetest_game
    SUBDIR += minetestmapper
    SUBDIR += minilens
    SUBDIR += mirrormagic
    SUBDIR += miscom
    SUBDIR += mkhexgrid
    SUBDIR += moagg
    SUBDIR += monsterz
    SUBDIR += moon-buggy
    SUBDIR += moonlander
    SUBDIR += moonlight-embedded
    SUBDIR += moria
    SUBDIR += motogt
    SUBDIR += mrboom
    SUBDIR += mt_dolphin_ia
    SUBDIR += mt_gtk_client
    SUBDIR += mtaserver
    SUBDIR += multimc
    SUBDIR += mvdsv
    SUBDIR += nInvaders
    SUBDIR += naev
    SUBDIR += naev-data
    SUBDIR += narcissu2
    SUBDIR += nazghul
    SUBDIR += nbsdgames
    SUBDIR += nehquake
    SUBDIR += neo-cowsay
    SUBDIR += nethack32
    SUBDIR += nethack33
    SUBDIR += nethack33-nox11
    SUBDIR += nethack34
    SUBDIR += nethack34-nox11
    SUBDIR += nethack36
    SUBDIR += nethack36-nox11
    SUBDIR += netherearth
    SUBDIR += netradiant
    SUBDIR += netrek-BRMH-bin
    SUBDIR += netrek-client-cow
    SUBDIR += nettoe
    SUBDIR += netwalk
    SUBDIR += neverball
    SUBDIR += newvox
    SUBDIR += nextgo
    SUBDIR += nexuiz
    SUBDIR += nighthawk
    SUBDIR += nimuh
    SUBDIR += ninix-aya
    SUBDIR += njam
    SUBDIR += nlarn
    SUBDIR += nonsense
    SUBDIR += npush
    SUBDIR += nsnake
    SUBDIR += nuclearchess
    SUBDIR += numptyphysics
    SUBDIR += numptyphysics-npcomplete
    SUBDIR += nwndata
    SUBDIR += nxengine
    SUBDIR += odamex
    SUBDIR += oldrunner
    SUBDIR += omega
    SUBDIR += oneko-sakura
    SUBDIR += onscripter
    SUBDIR += onscripter-1byte
    SUBDIR += oolite
    SUBDIR += oonsoo
    SUBDIR += open-adventure
    SUBDIR += openage
    SUBDIR += openarena
    SUBDIR += openarena-data
    SUBDIR += openarena-oax
    SUBDIR += openarena-server
    SUBDIR += openbor
    SUBDIR += openbor3482
    SUBDIR += openbor3711
    SUBDIR += openbor3979
    SUBDIR += openbor4432
    SUBDIR += openbubbles
    SUBDIR += openbve
    SUBDIR += opencity
    SUBDIR += openclaw
    SUBDIR += openclonk
    SUBDIR += opendungeons
    SUBDIR += openfodder
    SUBDIR += opengfx
    SUBDIR += openglad
    SUBDIR += openjazz
    SUBDIR += openjk
    SUBDIR += openlierox
    SUBDIR += openmortal
    SUBDIR += openmsx
    SUBDIR += openmw
    SUBDIR += openomf
    SUBDIR += openra
    SUBDIR += openrct2
    SUBDIR += opensfx
    SUBDIR += opensonic
    SUBDIR += openspades
    SUBDIR += openssn
    SUBDIR += opensurge
    SUBDIR += openttd
    SUBDIR += opentyrian
    SUBDIR += openxcom
    SUBDIR += openyahtzee
    SUBDIR += orbital_eunuchs_sniper
    SUBDIR += orthorobot
    SUBDIR += osgg
    SUBDIR += p5-Acme-GuessNumber
    SUBDIR += p5-Algorithm-Pair-Best2
    SUBDIR += p5-Algorithm-Pair-Swiss
    SUBDIR += p5-Baseball-Sabermetrics
    SUBDIR += p5-Games-Alak
    SUBDIR += p5-Games-AlphaBeta
    SUBDIR += p5-Games-Bingo
    SUBDIR += p5-Games-Bingo-Bot
    SUBDIR += p5-Games-Bingo-Print
    SUBDIR += p5-Games-Dice
    SUBDIR += p5-Games-GuessWord
    SUBDIR += p5-Games-Tournament-RoundRobin
    SUBDIR += pachi
    SUBDIR += pacmanarena
    SUBDIR += palapeli
    SUBDIR += palomino
    SUBDIR += pangzero
    SUBDIR += passage
    SUBDIR += patapizza-tetris
    SUBDIR += pathological
    SUBDIR += pcgen
    SUBDIR += pear-Games_Chess
    SUBDIR += peg-e
    SUBDIR += pengpong
    SUBDIR += penguin-command
    SUBDIR += pengupop
    SUBDIR += pentobi
    SUBDIR += phalanx
    SUBDIR += phlipple
    SUBDIR += picmi
    SUBDIR += pinball
    SUBDIR += pingus
    SUBDIR += pink-pony
    SUBDIR += pioneer
    SUBDIR += pioneers
    SUBDIR += pipenightdreams
    SUBDIR += pipepanic
    SUBDIR += pipewalker
    SUBDIR += pmars
    SUBDIR += pmars-sdl
    SUBDIR += poker-eval
    SUBDIR += pokerth
    SUBDIR += polyglot
    SUBDIR += pongix
    SUBDIR += ponscripter-sekai
    SUBDIR += popstar
    SUBDIR += pouetchess
    SUBDIR += powder
    SUBDIR += powder-toy
    SUBDIR += powermanga
    SUBDIR += powwow
    SUBDIR += prboom
    SUBDIR += prboom-plus
    SUBDIR += primateplunge
    SUBDIR += puckman
    SUBDIR += pushover
    SUBDIR += pvpgn
    SUBDIR += py-cbeams
    SUBDIR += py-discord.py
    SUBDIR += py-fife
    SUBDIR += py-mnemosyne
    SUBDIR += py-pychess
    SUBDIR += py-pysol-cards
    SUBDIR += py-sgflib
    SUBDIR += py-sgfsummary
    SUBDIR += pysolfc
    SUBDIR += pyspacewar
    SUBDIR += q2p
    SUBDIR += q2pro
    SUBDIR += q3cellshading
    SUBDIR += qcc
    SUBDIR += qccx
    SUBDIR += qnetwalk
    SUBDIR += qonk
    SUBDIR += qqwing
    SUBDIR += qstat
    SUBDIR += quadra
    SUBDIR += quadrapassel
    SUBDIR += quake-data
    SUBDIR += quake-dpmod
    SUBDIR += quake-source
    SUBDIR += quake2-3zb2
    SUBDIR += quake2-ctf
    SUBDIR += quake2-data
    SUBDIR += quake2-extras
    SUBDIR += quake2-lights
    SUBDIR += quake2-matrix
    SUBDIR += quake2-psychomod
    SUBDIR += quake2-relay
    SUBDIR += quake2-rogue
    SUBDIR += quake2-source
    SUBDIR += quake2-xatrix
    SUBDIR += quake2lnx
    SUBDIR += quake2max
    SUBDIR += quake3
    SUBDIR += quake3-data
    SUBDIR += quake3-excessive
    SUBDIR += quake3-osp
    SUBDIR += quake3-ut
    SUBDIR += quake3-wfa
    SUBDIR += quakeforge
    SUBDIR += quantumminigolf
    SUBDIR += quaqut
    SUBDIR += qudos
    SUBDIR += quetoo
    SUBDIR += quit
    SUBDIR += qwdtools
    SUBDIR += r1q2
    SUBDIR += railroad-rampage
    SUBDIR += rawgl
    SUBDIR += re3
    SUBDIR += redeclipse
    SUBDIR += redeclipse-data
    SUBDIR += redeclipse-data16
    SUBDIR += redeclipse16
    SUBDIR += redorblack
    SUBDIR += regoth
    SUBDIR += reminiscence
    SUBDIR += renpy
    SUBDIR += rescue
    SUBDIR += residualvm
    SUBDIR += retroarch
    SUBDIR += retroarch-assets
    SUBDIR += rezerwar
    SUBDIR += rfksay
    SUBDIR += ri-li
    SUBDIR += rlvm
    SUBDIR += rnd_jue
    SUBDIR += robocode
    SUBDIR += robocode-naval
    SUBDIR += robotfindskitten
    SUBDIR += rockdodger
    SUBDIR += rocksndiamonds
    SUBDIR += rocksndiamonds-data
    SUBDIR += rottdc
    SUBDIR += rpg-cli
    SUBDIR += rubix
    SUBDIR += rubygem-fortune_gem
    SUBDIR += rubygem-lolcat
    SUBDIR += rubygem-vimgolf
    SUBDIR += sampsvr
    SUBDIR += sarien
    SUBDIR += sauerbraten
    SUBDIR += scare
    SUBDIR += scid
    SUBDIR += scorched3d
    SUBDIR += scourge
    SUBDIR += scourge-data
    SUBDIR += scramble
    SUBDIR += scummvm
    SUBDIR += scummvm-tools
    SUBDIR += sdb
    SUBDIR += sdl-ball
    SUBDIR += sdl_jewels
    SUBDIR += sdl_lopan
    SUBDIR += sdl_scavenger
    SUBDIR += sdlpop
    SUBDIR += sdlroids
    SUBDIR += sdlsand
    SUBDIR += sea-defender
    SUBDIR += seabattle
    SUBDIR += searchandrescue
    SUBDIR += searchandrescue-data
    SUBDIR += senken
    SUBDIR += sets
    SUBDIR += sex
    SUBDIR += sgt-puzzles
    SUBDIR += shaaft
    SUBDIR += shockolate
    SUBDIR += shootingstar
    SUBDIR += simplevaders
    SUBDIR += simsu
    SUBDIR += simutrans
    SUBDIR += simutrans-pak128
    SUBDIR += simutrans-pak128.german
    SUBDIR += simutrans-pak64
    SUBDIR += sjeng
    SUBDIR += ski
    SUBDIR += sl
    SUBDIR += slade
    SUBDIR += slashem-tty
    SUBDIR += slump
    SUBDIR += sokoban
    SUBDIR += sol
    SUBDIR += solarconquest
    SUBDIR += solarus
    SUBDIR += solarus-quest-editor
    SUBDIR += sopwith
    SUBDIR += spacejunk
    SUBDIR += spacezero
    SUBDIR += speak
    SUBDIR += species
    SUBDIR += spellcast
    SUBDIR += spicetrade
    SUBDIR += spider
    SUBDIR += spring
    SUBDIR += springlobby
    SUBDIR += starfighter
    SUBDIR += starlanes
    SUBDIR += steelstorm
    SUBDIR += stendhal
    SUBDIR += stockfish
    SUBDIR += stonesoup
    SUBDIR += stormbaancoureur
    SUBDIR += stransball2
    SUBDIR += stratagus
    SUBDIR += stuntrally
    SUBDIR += sudsol
    SUBDIR += super_methane_brothers
    SUBDIR += supertux
    SUBDIR += supertux2
    SUBDIR += supertuxkart
    SUBDIR += swell-foop
    SUBDIR += sxsame
    SUBDIR += tads
    SUBDIR += taipan
    SUBDIR += taisei
    SUBDIR += tali
    SUBDIR += tanglet
    SUBDIR += tanks-of-freedom
    SUBDIR += tbclock
    SUBDIR += tecnoballz
    SUBDIR += teeworlds
    SUBDIR += tenebrae
    SUBDIR += tesseract
    SUBDIR += tesseract-data
    SUBDIR += tetrinet
    SUBDIR += tetrinet-x
    SUBDIR += tetzle
    SUBDIR += textmaze
    SUBDIR += thegrind
    SUBDIR += tileworld
    SUBDIR += tkmoo
    SUBDIR += tomatoes
    SUBDIR += tome4
    SUBDIR += tome4-beta
    SUBDIR += tomenet
    SUBDIR += tong
    SUBDIR += toppler
    SUBDIR += torcs
    SUBDIR += tornado
    SUBDIR += torrent
    SUBDIR += toycars
    SUBDIR += trackballs
    SUBDIR += tractorgen
    SUBDIR += traingame
    SUBDIR += tremulous
    SUBDIR += trenchbroom
    SUBDIR += trigger-rally
    SUBDIR += trimines
    SUBDIR += triplane
    SUBDIR += trojka
    SUBDIR += trophy
    SUBDIR += tsito
    SUBDIR += tt
    SUBDIR += ttt
    SUBDIR += tty-solitaire
    SUBDIR += tux-aqfh
    SUBDIR += tuxkart
    SUBDIR += tuxmath
    SUBDIR += tuxpaint
    SUBDIR += tuxpaint-config
    SUBDIR += tuxpaint-fonts
    SUBDIR += tuxpaint-stamps
    SUBDIR += tuxracer
    SUBDIR += tuxtype
    SUBDIR += twind
    SUBDIR += tycho
    SUBDIR += typespeed
    SUBDIR += tyrian-data
    SUBDIR += ufoai
    SUBDIR += ufoai-data
    SUBDIR += uhexen
    SUBDIR += uhexen2
    SUBDIR += uhexen2-extras
    SUBDIR += ultimatestunts
    SUBDIR += umark
    SUBDIR += unknown-horizons
    SUBDIR += unnethack
    SUBDIR += untahris
    SUBDIR += uqm
    SUBDIR += urbanterror-data
    SUBDIR += valyriatear
    SUBDIR += vamos
    SUBDIR += vavoom
    SUBDIR += vavoom-extras
    SUBDIR += vectoroids
    SUBDIR += veloren
    SUBDIR += violetland
    SUBDIR += viruskiller
    SUBDIR += vitetris
    SUBDIR += vkquake
    SUBDIR += vms-empire
    SUBDIR += voadi
    SUBDIR += volleyball
    SUBDIR += vor
    SUBDIR += vultures-eye
    SUBDIR += vvvvvv
    SUBDIR += wanderer
    SUBDIR += wargus
    SUBDIR += warmux
    SUBDIR += warzone2100
    SUBDIR += weebsay
    SUBDIR += wesnoth
    SUBDIR += whichwayisup
    SUBDIR += widelands
    SUBDIR += wizznic
    SUBDIR += wmpuzzle
    SUBDIR += wmqstat
    SUBDIR += wmtictactoe
    SUBDIR += wolfpack
    SUBDIR += wop
    SUBDIR += wordplay
    SUBDIR += wordwarvi
    SUBDIR += worldofpadman
    SUBDIR += wtf
    SUBDIR += wxlauncher
    SUBDIR += wyrmgus
    SUBDIR += wyrmsun
    SUBDIR += xasteroids
    SUBDIR += xataxx
    SUBDIR += xbat
    SUBDIR += xbill
    SUBDIR += xbl
    SUBDIR += xblackjack
    SUBDIR += xblast
    SUBDIR += xblood
    SUBDIR += xboard
    SUBDIR += xboard-devel
    SUBDIR += xboing
    SUBDIR += xbomb
    SUBDIR += xbubble
    SUBDIR += xchadance
    SUBDIR += xcheckers
    SUBDIR += xchomp
    SUBDIR += xconq
    SUBDIR += xcowsay
    SUBDIR += xcubes
    SUBDIR += xdeblock
    SUBDIR += xdemineur
    SUBDIR += xdesktopwaves
    SUBDIR += xdigger
    SUBDIR += xdino
    SUBDIR += xemeraldia
    SUBDIR += xeyesplus
    SUBDIR += xfireworks
    SUBDIR += xfrisk
    SUBDIR += xgalaga
    SUBDIR += xgalaga++
    SUBDIR += xgalaga-sdl
    SUBDIR += xglk
    SUBDIR += xhexagons
    SUBDIR += xhime
    SUBDIR += xinfocom
    SUBDIR += xinvaders
    SUBDIR += xinvaders3d
    SUBDIR += xisola
    SUBDIR += xjewel
    SUBDIR += xjig
    SUBDIR += xjump
    SUBDIR += xjumpx
    SUBDIR += xkoules
    SUBDIR += xlaby
    SUBDIR += xlennart
    SUBDIR += xlife
    SUBDIR += xlogical
    SUBDIR += xmahjongg
    SUBDIR += xmastermind
    SUBDIR += xmball
    SUBDIR += xmemory
    SUBDIR += xmille
    SUBDIR += xmine
    SUBDIR += xminehunter
    SUBDIR += xmines
    SUBDIR += xmlink
    SUBDIR += xmoto
    SUBDIR += xmris
    SUBDIR += xmulti
    SUBDIR += xneko
    SUBDIR += xnethack
    SUBDIR += xnethack-nox11
    SUBDIR += xoct
    SUBDIR += xoids
    SUBDIR += xoj
    SUBDIR += xonotic
    SUBDIR += xorgramana
    SUBDIR += xosmulti
    SUBDIR += xpanex
    SUBDIR += xpat2
    SUBDIR += xpilot
    SUBDIR += xpilot-ng-server
    SUBDIR += xpipeman
    SUBDIR += xpired
    SUBDIR += xpuzzletama
    SUBDIR += xpyraminx
    SUBDIR += xqf
    SUBDIR += xrally
    SUBDIR += xray_re-tools
    SUBDIR += xrick
    SUBDIR += xrisk
    SUBDIR += xroach
    SUBDIR += xrobots
    SUBDIR += xrot
    SUBDIR += xrubik
    SUBDIR += xsc
    SUBDIR += xscavenger
    SUBDIR += xscrabble
    SUBDIR += xshisen
    SUBDIR += xshogi
    SUBDIR += xskat
    SUBDIR += xskewb
    SUBDIR += xsokoban
    SUBDIR += xsoldier
    SUBDIR += xspacewarp
    SUBDIR += xspringies
    SUBDIR += xteddy
    SUBDIR += xtet42
    SUBDIR += xtgyoretsu
    SUBDIR += xtic
    SUBDIR += xtriangles
    SUBDIR += xtrojka
    SUBDIR += xtron
    SUBDIR += xtruco
    SUBDIR += xtux
    SUBDIR += xvier
    SUBDIR += xworm
    SUBDIR += xye
    SUBDIR += xzip
    SUBDIR += yadex
    SUBDIR += yahtzee
    SUBDIR += zangband
    SUBDIR += zatacka
    SUBDIR += zaz
    SUBDIR += zdoom
    SUBDIR += zhlt
    SUBDIR += zoom
    SUBDIR += ztrack

.include <bsd.port.subdir.mk>