Makefile.emx
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:1k
源码类别:

Symbian

开发平台:

Visual C++

  1. # Makefile for zlib.  Modified for emx 0.9c by Chr. Spieler, 6/17/98.
  2. # Copyright (C) 1995-1998 Jean-loup Gailly.
  3. # For conditions of distribution and use, see copyright notice in zlib.h 
  4. # To compile, or to compile and test, type:
  5. #   make -fmakefile.emx;  make test -fmakefile.emx
  6. CC=gcc
  7. #CFLAGS=-MMD -O
  8. #CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
  9. #CFLAGS=-MMD -g -DDEBUG
  10. CFLAGS=-MMD -O3 $(BUTT) -Wall -Wwrite-strings -Wpointer-arith -Wconversion 
  11.              -Wstrict-prototypes -Wmissing-prototypes
  12. # If cp.exe is available, replace "copy /Y" with "cp -fp" .
  13. CP=copy /Y
  14. # If gnu install.exe is available, replace $(CP) with ginstall.
  15. INSTALL=$(CP)
  16. # The default value of RM is "rm -f."  If "rm.exe" is found, comment out:
  17. RM=del
  18. LDLIBS=-L. -lzlib
  19. LD=$(CC) -s -o
  20. LDSHARED=$(CC)
  21. INCL=zlib.h zconf.h
  22. LIBS=zlib.a
  23. AR=ar rcs
  24. prefix=/usr/local
  25. exec_prefix = $(prefix)
  26. OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o 
  27.        zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o
  28. TEST_OBJS = example.o minigzip.o
  29. all: example.exe minigzip.exe
  30. test: all
  31. ./example
  32. echo hello world | .minigzip | .minigzip -d 
  33. %.o : %.c
  34. $(CC) $(CFLAGS) -c $< -o $@
  35. zlib.a: $(OBJS)
  36. $(AR) $@ $(OBJS)
  37. %.exe : %.o $(LIBS)
  38. $(LD) $@ $< $(LDLIBS)
  39. .PHONY : clean
  40. clean:
  41. $(RM) *.d
  42. $(RM) *.o
  43. $(RM) *.exe
  44. $(RM) zlib.a
  45. $(RM) foo.gz
  46. DEPS := $(wildcard *.d)
  47. ifneq ($(DEPS),)
  48. include $(DEPS)
  49. endif