aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/uzlib/src/makefile
blob: 3ced616fefdf38192d1b1ff220d8a83b92394c00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
##
## tinflib  -  tiny inflate library (inflate, gzip, zlib)
##
## GCC makefile (Linux, FreeBSD, BeOS and QNX)
##
## Copyright (c) 2003 by Joergen Ibsen / Jibz
## All Rights Reserved
##
## http://www.ibsensoftware.com/
##

target  = ../lib/libtinf.a
objects = tinflate.o tinfgzip.o tinfzlib.o adler32.o crc32.o \
    defl_static.o genlz77.o

COPT    = -Os
CFLAGS  = -Wall $(COPT)
LDFLAGS = $(CFLAGS) -s

.PHONY: all clean

all: $(target)

$(target): $(objects)
	$(RM) $@
	ar -frs $@ $^
	ranlib $@

%.o : %.c
	$(CC) $(CFLAGS) -o $@ -c $<

%.o : %.nas
	nasm -o $@ -f elf -D_ELF_ -O3 -Inasm/ $<

clean:
	$(RM) $(objects) $(target)