Edit

kc3-lang/md4c/.gitignore

Branch :

  • Show log

    Commit

  • Author : Rasmus Andersson
    Date : 2020-10-18 09:41:37
    Hash : 1b2840cb
    Message : adds /build dir to gitignore Documentation https://github.com/mity/md4c/wiki/Building-MD4C says to use build/ for cmake. I noticed that .gitignore contains a directory called build-aux -- perhaps the author were using that and either forgot to update the gitignore file or the documentation.

  • .gitignore
  • # Prerequisites
    *.d
    
    # Object files
    *.o
    *.ko
    *.obj
    *.elf
    
    # Linker output
    *.ilk
    *.map
    *.exp
    
    # Precompiled Headers
    *.gch
    *.pch
    
    # Libraries
    *.lib
    *.a
    *.la
    *.lo
    
    # Shared objects (inc. Windows DLLs)
    *.dll
    *.so
    *.so.*
    *.dylib
    
    # Executables
    *.exe
    *.out
    *.app
    *.i*86
    *.x86_64
    *.hex
    pfft
    
    # Debug files
    *.dSYM/
    *.su
    *.idb
    *.pdb
    
    # Kernel Module Compile Results
    *.mod*
    *.cmd
    .tmp_versions/
    modules.order
    Module.symvers
    Mkfile.old
    dkms.conf
    
    # Temp files
    *.swp
    *.tmp
    *~
    ~*
    *.e
    
    # autotools
    /aclocal.m4
    /autom4te.cache/
    /build/
    /build-aux/
    conf*.dir/
    /config.h
    /config.log
    /config.status
    /configure
    .deps/
    .dirstamp
    Makefile
    Makefile.in
    stamp-*
    *.stamp
    *.stamp-*
    .Tpo