added debug compilations

xkbcommon
Alessandro Mauri 4 years ago
parent 636bfe7a5e
commit 76dd08c465
  1. 2
      .gitignore
  2. 5
      makefile

2
.gitignore vendored

@ -1,4 +1,4 @@
*.out
*.swp
*.o
macrod
macrod*

@ -3,7 +3,10 @@ CFLAGS = -Wall -Werror -pedantic -O2
macrod: macrod.o
debug:
gcc $(CFLAGS) -g macrod.c -o macrod_debug
macrod.o: macrod.c
clean:
rm macrod *.o
rm macrod *.o macrod_debug 2> /dev/null

Loading…
Cancel
Save