mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
15 lines
234 B
Makefile
15 lines
234 B
Makefile
|
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 *~
|