From 432710105944621ed3a10142e2a80ba37c47eb60 Mon Sep 17 00:00:00 2001 From: Leonard Kugis Date: Wed, 27 Apr 2022 19:28:10 +0200 Subject: Added Makefile --- .gitignore | 104 +++++++++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 95 insertions(+), 9 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 1f413f9..07dbef8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,95 @@ -# Compiled sibs files -sibs-build/ -compile_commands.json -tests/sibs-build/ -tests/compile_commands.json -vr-video-player -window_texture.o -main.o -.clangd/ +build +bin + +# Created by https://www.toptal.com/developers/gitignore/api/c,c++,linux +# Edit at https://www.toptal.com/developers/gitignore?templates=c,c++,linux + +### C ### +# 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 + +# Debug files +*.dSYM/ +*.su +*.idb +*.pdb + +# Kernel Module Compile Results +*.mod* +*.cmd +.tmp_versions/ +modules.order +Module.symvers +Mkfile.old +dkms.conf + +### C++ ### +# Prerequisites + +# Compiled Object files +*.slo + +# Precompiled Headers + +# Compiled Dynamic libraries + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai + +# Executables + +### Linux ### +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* + +# End of https://www.toptal.com/developers/gitignore/api/c,c++,linux -- cgit v1.2.3