makefile

来自「一个C语言实现的压缩解压的工具代码」· 代码 · 共 52 行

TXT
52
字号
#  (C) Copyright changhong 2004.
# MODULE: QAM5516 DVB-C project
#
# FILE	: makefile
#
# NAME	: zxg changhong 
#
include	$(DVD_MAKE)/generic.mak

EXPORTS	= stzip.lib

# local	objects	which comprise this component

vpath %.h $(DVD_ROOT)/main

OBJS =  trees.tco  \
        inftrees.tco maketree.tco \
		infutil.tco adler32.tco \
        compress.tco crc32.tco deflate.tco \
        gzio.tco infblock.tco \
	    infcodes.tco inffast.tco  

###############################
#OBJS =  untgz.tco trees.tco minizip.tco \
##        inftrees.tco minigzip.tco maketree.tco \
##		infutil.tco miniunz.tco adler32.tco \
 ##       compress.tco crc32.tco deflate.tco \
  ##      example.tco gvmat32c.tco gzio.tco infblock.tco \
##		infcodes.tco inffast.tco  

# Default build	targets
TARGETS	= stzip.lib


include	$(DVD_MAKE)/defrules.mak

stzip.lib:  $(OBJS)
ifeq ($(strip $(SILENT)),)
	@echo Linking $@
  endif
	$(AR) $^ -o $@

clean:
	@echo Cleaning stzip
	$(RM) *.tco
	$(RM) *.lib
	




⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?