Selaa lähdekoodia

Add clean task and ignore binaries.

Lucas Stadler 12 vuotta sitten
vanhempi
commit
a5280fd28b
2 muutettua tiedostoa jossa 4 lisäystä ja 0 poistoa
  1. 1 0
      c/.gitignore
  2. 3 0
      c/Makefile

+ 1 - 0
c/.gitignore

@ -0,0 +1 @@
1
anon_struct

+ 3 - 0
c/Makefile

@ -2,3 +2,6 @@ all: anon_struct
2 2
3 3
anon_struct: anon_struct.c
4 4
	gcc -std=c11 -fms-extensions anon_struct.c -o anon_struct
5
6
clean:
7
	rm -f anon_struct