build ddls

git-svn-id: svn://kolibrios.org@1898 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Sergey Semyonov (Serge) 2011-03-04 05:55:41 +00:00
parent a359038b4b
commit 8ba9310247
4 changed files with 49 additions and 12 deletions

View File

@ -1,15 +1,22 @@
LIBRARY = cairo LIBRARY = cairo
CC = gcc CC = gcc
CFLAGS = -c -O2 -fomit-frame-pointer CFLAGS = -c -O2 -fomit-frame-pointer
LDIMPORT:= -nostdlib --out-implib libcairoimp.a --exclude-libs libamz.a
LDFLAGS:= -shared -s -T ../newlib/dll.lds -Map map --image-base 0
DEFINES = -DHAVE_CONFIG_H -DCAIRO_NO_MUTEX -U_WIN32 -U_MSC_VER -U__WIN32__ DEFINES = -DHAVE_CONFIG_H -DCAIRO_NO_MUTEX -U_WIN32 -U_MSC_VER -U__WIN32__
INCLUDES = -I../newlib/include -I../pixman -I../zlib -I../libpng INCLUDES = -I../newlib/include -I../pixman -I../zlib -I../libpng
LIBPATH:= -L../newlib -L../pixman -L../libpng
LIBS:= -lamz -lgcc -lcimp -lpiximp -lpngimp
CAIRO_SOURCES = \ CAIRO_SOURCES = \
cairo-analysis-surface.c \ cairo-analysis-surface.c \
cairo-arc.c \ cairo-arc.c \
@ -27,6 +34,7 @@ CAIRO_SOURCES = \
cairo-clip.c \ cairo-clip.c \
cairo-color.c \ cairo-color.c \
cairo-composite-rectangles.c \ cairo-composite-rectangles.c \
cairo-debug.c \
cairo-device.c \ cairo-device.c \
cairo-fixed.c \ cairo-fixed.c \
cairo-font-face.c \ cairo-font-face.c \
@ -104,13 +112,16 @@ OBJECTS = $(patsubst %.c, src/%.o, $(SOURCES))
# targets # targets
all:$(LIBRARY).a all:$(LIBRARY).a $(LIBRARY).dll
$(LIBRARY).a: $(OBJECTS) Makefile $(LIBRARY).a: $(OBJECTS) Makefile
ar cvrs $(LIBRARY).a $(OBJECTS) ar cvrs $(LIBRARY).a $(OBJECTS)
$(LIBRARY).dll: $(OBJECTS) Makefile
ld $(LDFLAGS) $(LDIMPORT) $(LIBPATH) -o $@ $(OBJECTS) $(LIBS)
%.o : %.c Makefile %.o : %.c Makefile
$(CC) $(CFLAGS) $(DEFINES) $(INCLUDES) -o $@ $< $(CC) $(CFLAGS) $(DEFINES) $(INCLUDES) -o $@ $<

View File

@ -7,7 +7,11 @@ AR= ar rc
CFLAGS = -c -O2 -fomit-frame-pointer CFLAGS = -c -O2 -fomit-frame-pointer
DEFS = -DHAVE_CONFIG_H LDIMPORT:= -nostdlib --out-implib libpngimp.a --exclude-libs libamz.a
LDFLAGS:= -shared -s -T../newlib/dll.lds -Map map --image-base 0
DEFS = -DHAVE_CONFIG_H -D__DYNAMIC_REENT__
LIBPNG_DEFINES = -DPNG_CONFIGURE_LIBPNG LIBPNG_DEFINES = -DPNG_CONFIGURE_LIBPNG
@ -15,12 +19,14 @@ DEFINES= $(DEFS) $(LIBPNG_DEFINES)
INCLUDES= -I../newlib/include -I../zlib INCLUDES= -I../newlib/include -I../zlib
LIBPATH:= -L../newlib -L../zlib
LIBS:= -lamz -lgcc -lzimp -lcimp
SOURCES = png.c pngerror.c pngget.c pngmem.c pngpread.c \ SOURCES = png.c pngerror.c pngget.c pngmem.c pngpread.c \
pngread.c pngrio.c pngrtran.c pngrutil.c \ pngread.c pngrio.c pngrtran.c pngrutil.c \
pngset.c pngtrans.c pngwio.c pngwrite.c \ pngset.c pngtrans.c pngwio.c pngwrite.c \
pngwtran.c pngwutil.c png.h pngconf.h \ pngwtran.c pngwutil.c
pngdebug.h pnginfo.h pngpriv.h pngstruct.h
@ -30,12 +36,14 @@ OBJECTS = $(patsubst %.c, %.o, $(SOURCES))
# targets # targets
all:$(LIBRARY).a all:$(LIBRARY).a $(LIBRARY).dll
$(LIBRARY).a: $(OBJECTS) Makefile $(LIBRARY).a: $(OBJECTS) Makefile
ar cvrs $(LIBRARY).a $(OBJECTS) ar cvrs $(LIBRARY).a $(OBJECTS)
$(LIBRARY).dll: $(OBJECTS) Makefile
ld $(LDFLAGS) $(LDIMPORT) $(LIBPATH) -o $@ $(OBJECTS) $(LIBS)
%.o : %.c Makefile %.o : %.c Makefile
$(CC) $(CFLAGS) $(DEFINES) $(INCLUDES) -o $@ $< $(CC) $(CFLAGS) $(DEFINES) $(INCLUDES) -o $@ $<

View File

@ -5,10 +5,17 @@ CC = gcc
CFLAGS = -c -O2 -mmmx -Winline -fomit-frame-pointer CFLAGS = -c -O2 -mmmx -Winline -fomit-frame-pointer
DEFINES = -DHAVE_CONFIG_H -DPIXMAN_NO_TLS -DUSE_MMX LDIMPORT:= -nostdlib --out-implib libpiximp.a --exclude-libs libamz.a
LDFLAGS:= -shared -s -T ../newlib/dll.lds -Map map --image-base 0
DEFINES = -DHAVE_CONFIG_H -DPIXMAN_NO_TLS -D__DYNAMIC_REENT__ -DUSE_MMX
INCLUDES = -I../pixman -I../newlib/include INCLUDES = -I../pixman -I../newlib/include
LIBPATH:= -L../newlib
LIBS:= -lamz -lgcc -lcimp
SOURCES = \ SOURCES = \
pixman-image.c \ pixman-image.c \
pixman-access.c \ pixman-access.c \
@ -40,12 +47,16 @@ OBJECTS = $(patsubst %.c, %.o, $(SOURCES))
# targets # targets
all:$(LIBRARY).a all:$(LIBRARY).a $(LIBRARY).dll
$(LIBRARY).a: $(OBJECTS) Makefile $(LIBRARY).a: $(OBJECTS) Makefile
ar cvrs $(LIBRARY).a $(OBJECTS) ar cvrs $(LIBRARY).a $(OBJECTS)
$(LIBRARY).dll: $(OBJECTS) Makefile
ld $(LDFLAGS) $(LDIMPORT) $(LIBPATH) -o $@ $(OBJECTS) $(LIBS)
%.o: %.c $(SOURCES) Makefile %.o: %.c $(SOURCES) Makefile
$(CC) $(CFLAGS) $(DEFINES) $(INCLUDES) -o $@ $< $(CC) $(CFLAGS) $(DEFINES) $(INCLUDES) -o $@ $<

View File

@ -2,17 +2,20 @@
# Copyright (C) 1995-2010 Jean-loup Gailly. # Copyright (C) 1995-2010 Jean-loup Gailly.
# For conditions of distribution and use, see copyright notice in zlib.h # For conditions of distribution and use, see copyright notice in zlib.h
CC=gcc CC=gcc
CPP=gcc -E CPP=gcc -E
CFLAGS= -O3 -c -fomit-frame-pointer CFLAGS= -O3 -c -fomit-frame-pointer
LDIMPORT:= -nostdlib --out-implib libzimp.a
LDFLAGS:= -shared -s -T ../newlib/dll.lds -Map map --image-base 0
INCLUDES= -I../newlib/include INCLUDES= -I../newlib/include
LIBPATH:= -L../newlib
STATICLIB=libz.a LIBS:= -lamz -lgcc -lcimp
LIBS=$(STATICLIB) $(SHAREDLIBV)
AR=ar rc AR=ar rc
@ -27,11 +30,15 @@ OBJA =
OBJS = $(OBJC) $(OBJA) OBJS = $(OBJC) $(OBJA)
all: libz.a all: libz.a libz.dll
libz.a: $(OBJS) libz.a: $(OBJS)
$(AR) $@ $(OBJS) $(AR) $@ $(OBJS)
libz.dll: $(OBJECTS) Makefile
ld $(LDFLAGS) $(LDIMPORT) $(LIBPATH) -o $@ $(OBJS) $(LIBS)
%.o: %.c Makefile %.o: %.c Makefile
$(CC) $(CFLAGS) $(INCLUDES) -o $@ $< $(CC) $(CFLAGS) $(INCLUDES) -o $@ $<