aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/uzlib/src/makefile.dj2
blob: 856ecfd63b7823fef54fd8bf39a6ea20b0f24d90 (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
##
## tinflib  -  tiny inflate library (inflate, gzip, zlib)
##
## DJGPP makefile
##
## 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

cflags  = -s -Wall -Os -fomit-frame-pointer

.PHONY: all clean

all: $(target)

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

%.o : %.c
	gcc $(cflags) -o $@ -c $<

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

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