X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=drivers%2Flib%2Fbzip2%2FMakefile;h=8e845e1ddec26dbe4b79d42edaf869830881cdd3;hb=e3ed2d773259cc445c7ff8181ebd934931365328;hp=c933adbc8a5698c93ff58ca4f5642f4a01af6621;hpb=d378c68f5a9bb25c9e671dacd482d2e25d211df3;p=reactos.git diff --git a/drivers/lib/bzip2/Makefile b/drivers/lib/bzip2/Makefile index c933adb..8e845e1 100644 --- a/drivers/lib/bzip2/Makefile +++ b/drivers/lib/bzip2/Makefile @@ -1,18 +1,35 @@ +# $Id$ + PATH_TO_TOP = ../../.. + TARGET_TYPE = export_driver + TARGET_NAME = unbzip2 + TARGET_NORC = yes -TARGET_CFLAGS=-Wall -Winline -Os -fomit-frame-pointer -fno-strength-reduce -DBZ_NO_STDIO -DBZ_DECOMPRESS_ONLY $(BIGFILES) -g +TARGET_CFLAGS = \ + -Wall -Winline -Os -fomit-frame-pointer -fno-strength-reduce \ + -DBZ_NO_STDIO -DBZ_DECOMPRESS_ONLY $(BIGFILES) -g -TARGET_OBJECTS = bzlib.o randtable.o crctable.o decompress.o huffman.o dllmain.o +TARGET_OBJECTS = \ + bzlib.o \ + randtable.o \ + crctable.o \ + decompress.o \ + huffman.o \ + dllmain.o TARGET_GCCLIBS = gcc include $(PATH_TO_TOP)/rules.mak + include $(TOOLS_PATH)/helper.mk test.exe: test.o ../../dk/w32/lib/unbzip2.a $(CC) -s -Os -o test.exe test.o ../../dk/w32/lib/unbzip2.a + test.o: test.c $(CC) -s -Os -c test.c + +# EOF