Edit .gitignore

This commit is contained in:
Hakase
2018-02-14 16:15:14 +09:00
parent a63904425e
commit 8108d3a770
12 changed files with 3927 additions and 43 deletions
+14
View File
@@ -0,0 +1,14 @@
CC=cc
CFLAGS=-g
untgz: untgz.o ../../libz.a
$(CC) $(CFLAGS) -o untgz untgz.o -L../.. -lz
untgz.o: untgz.c ../../zlib.h
$(CC) $(CFLAGS) -c -I../.. untgz.c
../../libz.a:
cd ../..; ./configure; make
clean:
rm -f untgz untgz.o *~