.gitignore 177 B

1234567891011121314
  1. // Ignore executable
  2. dd_lang
  3. // Ignore lex and yacc generated files
  4. lex.yy.c
  5. y.tab.c
  6. y.tab.h
  7. // Ignore javascript files as they are generated
  8. *.js
  9. // Ignore object files
  10. *.o