mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Moved zlib in reactos/lib/zlib and updated to version 1.1.4
svn path=/trunk/; revision=2731
This commit is contained in:
parent
dc5296ac57
commit
8571b1561a
2 changed files with 18 additions and 8 deletions
|
@ -3,19 +3,25 @@
|
|||
#
|
||||
PATH_TO_TOP = ../..
|
||||
|
||||
ZLIB_OBJECTS = zlib/adler32.o zlib/deflate.o zlib/infblock.o zlib/infcodes.o \
|
||||
zlib/inflate.o zlib/inftrees.o zlib/infutil.o zlib/inffast.o \
|
||||
zlib/trees.o zlib/zutil.o
|
||||
#FIXME: why doesn't this work?
|
||||
#ZLIB_OBJECTS = $(PATH_TO_TOP)/lib/zlib/zlib.a
|
||||
ZLIB_PATH = $(PATH_TO_TOP)/lib/zlib
|
||||
|
||||
ZLIB_OBJECTS = $(ZLIB_PATH)/adler32.o $(ZLIB_PATH)/deflate.o \
|
||||
$(ZLIB_PATH)/infblock.o $(ZLIB_PATH)/infcodes.o \
|
||||
$(ZLIB_PATH)/inflate.o $(ZLIB_PATH)/inftrees.o \
|
||||
$(ZLIB_PATH)/infutil.o $(ZLIB_PATH)/inffast.o \
|
||||
$(ZLIB_PATH)/trees.o $(ZLIB_PATH)/zutil.o
|
||||
ENGINE_OBJECTS = $(ZLIB_OBJECTS) cabinet.o mszip.o raw.o
|
||||
TEST_OBJECTS = $(ENGINE_OBJECTS) test.o
|
||||
OBJECTS = $(ENGINE_OBJECTS) main.o dfp.o
|
||||
TARGET = cabman
|
||||
PROGS = $(TARGET).exe test.exe
|
||||
|
||||
CFLAGS += -O3
|
||||
|
||||
CLEAN_FILES = *.o zlib/*.o $(TARGET).exe $(TARGET).sym test.exe test.sym
|
||||
#FIXME: zlib should be compiled and installed in the SDK by the master makefile
|
||||
CFLAGS += -O3 -I$(ZLIB_PATH)
|
||||
|
||||
CLEAN_FILES = *.o $(TARGET).exe $(TARGET).sym test.exe test.sym
|
||||
|
||||
all: $(PROGS)
|
||||
|
||||
|
@ -42,7 +48,11 @@ else
|
|||
$(CP) $* ../../$(DIST_DIR)/apps/$*
|
||||
endif
|
||||
|
||||
$(TARGET).exe: $(OBJECTS)
|
||||
#FIXME: zlib should be compiled and installed in the SDK by the master makefile
|
||||
$(ZLIB_PATH)/zlib.a:
|
||||
make -C $(ZLIB_PATH) -f makefile.reactos
|
||||
|
||||
$(TARGET).exe: $(OBJECTS) $(ZLIB_PATH)/zlib.a
|
||||
$(CC) $(OBJECTS) -o $(TARGET).exe
|
||||
$(NM) --numeric-sort $(TARGET).exe > $(TARGET).sym
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#define __MSZIP_H
|
||||
|
||||
#include "cabinet.h"
|
||||
#include "zlib/zlib.h"
|
||||
#include <zlib.h>
|
||||
|
||||
#define MSZIP_MAGIC 0x4B43
|
||||
|
||||
|
|
Loading…
Reference in a new issue