git.y1.nz

gbdk-2020

GameBoy Development Kit
download: https://git.y1.nz/archives/gbdk.tar.gz
README | Files | Log | Refs | LICENSE

.gitignore

      1 # Prerequisites
      2 *.d
      3 
      4 # Object files
      5 *.o
      6 *.ko
      7 *.obj
      8 *.elf
      9 
     10 # Linker output
     11 *.ilk
     12 *.map
     13 *.exp
     14 
     15 # Precompiled Headers
     16 *.gch
     17 *.pch
     18 
     19 # Libraries
     20 *.lib
     21 *.a
     22 *.la
     23 *.lo
     24 
     25 # Shared objects (inc. Windows DLLs)
     26 *.dll
     27 *.so
     28 *.so.*
     29 *.dylib
     30 
     31 # Executables
     32 *.exe
     33 *.out
     34 *.app
     35 *.i*86
     36 *.x86_64
     37 *.hex
     38 
     39 # Debug files
     40 *.dSYM/
     41 *.su
     42 *.idb
     43 *.pdb
     44 
     45 # Kernel Module Compile Results
     46 *.mod*
     47 *.cmd
     48 .tmp_versions/
     49 modules.order
     50 Module.symvers
     51 Mkfile.old
     52 dkms.conf
     53 build/
     54 *.user
     55 *.opendb
     56 *.db
     57 *.suo
     58 gbdk-support/Debug/
     59 gbdk-support/bankpack/bankpack
     60 gbdk-support/gbcompress/gbcompress
     61 gbdk-support/ihxcheck/ihxcheck
     62 gbdk-support/lcc/lcc
     63 gbdk-support/png2mtspr/png2mtspr
     64 gbdk-support/png2asset/png2asset
     65 gbdk-support/png2asset/testing/out/*
     66 gbdk-support/makebin/makebin
     67 gbdk-support/makecom/makecom
     68 gbdk-support/makenes/makenes
     69 
     70 gbdk-support/png2hicolorgb/png2hicolorgb
     71 gbdk-support/romusage/romusage
     72 as/bin
     73 link/bin
     74 maccer
     75 link/Debug/
     76 link/.vs/
     77 far_fixer/Debug/
     78 far_fixer/.vs/
     79 [Dd]ebug/
     80 
     81 # Auto-generated make.bat and compile.bat (from Makefiles)
     82 make.bat
     83 compile.bat
     84 
     85 # Doc generation files
     86 gbdk-lib/doc/
     87 
     88 # VS.Code folder
     89 .vscode
     90 
     91 gen/
     92 bin/
     93 obj/
     94 dist/

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.