Subversion Repositories Kolibri OS

Rev

Rev 4349 | Rev 4367 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4349 Rev 4362
Line 3... Line 3...
3
CC = gcc
3
CC = gcc
4
CFLAGS = -c -O2 -ffast-math -Wall -Winline -Wno-attributes -fomit-frame-pointer
4
CFLAGS = -c -O2 -ffast-math -Wall -Winline -Wno-attributes -fomit-frame-pointer
Line 5... Line 5...
5
 
5
 
6
LD = ld
6
LD = ld
Line 7... Line 7...
7
LDFLAGS = -shared -s -nostdlib -T ../newlib/dll.lds --entry _DllStartup --image-base=0 --output-def $(LIBRARY).orig.def --out-implib $(LIBRARY).dll.a
7
LDFLAGS = -shared -s -nostdlib -T ../newlib/dll.lds --entry _DllStartup --image-base=0 --version-script cairo.ver --output-def $(LIBRARY).orig.def --out-implib $(LIBRARY).dll.a
Line 8... Line 8...
8
 
8
 
Line 149... Line 149...
149
 
149
 
Line 150... Line 150...
150
 
150
 
151
$(LIBRARY).a: $(OBJECTS) Makefile
151
$(LIBRARY).a: $(OBJECTS) Makefile
152
	ar cvrs $(LIBRARY).a $(OBJECTS)
152
	ar cvrs $(LIBRARY).a $(OBJECTS)
Line 153... Line 153...
153
	mv -f $(LIBRARY).a ../../static
153
	mv -f $(LIBRARY).a ../../lib
154
 
154
 
155
 
155