⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.ppc

📁 4510 bios,please see it carefully!and so on,no thanks
💻 PPC
字号:
#
# Makefile for the GoAhead web server reference source base
#  for the VxWorks 486 OS
#
# Copyright (c) Go Ahead, 1995-2000
#
# $Id: Makefile.ppc,v 1.1 2001/12/05 21:51:04 bporter Exp $
#

all:	compile 

CC				= ccppc
AR				= arppc
LD				= ldppc

ARCH			= libwebs.a
NAME			= webs
# User Management switch
UMSW			= -DUSER_MANAGEMENT_SUPPORT
# Digest Access switch
DASW			= -DDIGEST_ACCESS_SUPPORT
# SSL switches, uncomment to activate (SSL paths may require modification)
# SSLINC = /RSASSL/library/include
# SSLLIB = /RSASSL/library/lib/libsslc.a
# SSLSW	= -DWEBS_SSL_SUPPORT -I$(SSLINC)
# SSLPATCHFILE = ../websSSL.o

WEBCOMP			= webcomp
DEPEND_FILES	= ../asp.o ../balloc.o ../base64.o ../cgi.o ../default.o  \
				  ../ejlex.o ../ejparse.o ../form.o \
				  ../h.o ../handler.o ../mime.o ../misc.o ../page.o  \
				  ../ringq.o ../rom.o $(SSLPATCHFILE) \
				  ../md5c.o ../um.o ../umui.o ../websda.o ../emfdb.o \
				  ../security.o ../sym.o ../uemf.o ../url.o ../value.o \
				  ../webrom.o ../webs.o ../websuemf.o \
				  ../sock.o ../sockGen.o main.o
CFLAGS			= -DWEBS -DUEMF -DOS="VXWORKS" -DVXWORKS $(UMSW) $(DASW) -Wall $(SSLSW)
BSP_CFLAGS		= -DNATIVE64 -DBIGENDIAN -DMCP750 -DCPU=PPC604 -mpowerpc -ansi -nostdinc -fvolatile -nostdlib -fno-builtin -fno-defer-pop -mlongcall
IFLAGS			= -I/tornado2/target/h -I../
OTHERS			= -DB_STATS -DB_FILL -DDEBUG
DEBUG			= -O
#DEBUG			= -g -DDEV -DASSERT
LDFLAGS			= $(SSLLIB)

compile: $(NAME)

#
#	Build archive of objects
#
$(ARCH): $(DEPEND_FILES)
	$(AR) $(ARFLAGS) $(ARCH) $?

#
#	Primary link
#
$(NAME): Makefile $(ARCH)
	$(LD) -o $(NAME).o -r main.o $(ARCH) $(LDFLAGS) 

$(WEBCOMP): Makefile $(ARCH)
	$(LD) -o $(WEBCOMP).o -r webcomp.o $(ARCH) $(LDFLAGS) 

clean:
	rm -f $(NAME)

#
#	Dependencies
#
../asp.o:  ../webs.h ../wsIntrn.h ../ej.h ../ejIntrn.h ../uemf.h

../balloc.o: ../balloc.c ../uemf.h

../base64.o:  ../base64.c ../webs.h ../wsIntrn.h ../ej.h ../ejIntrn.h ../uemf.h

../cgi.o:  ../webs.h ../wsIntrn.h ../uemf.h

../default.o:  ../default.c ../webs.h ../wsIntrn.h ../ej.h ../ejIntrn.h ../uemf.h

../emfdb.o:  ../emfdb.h ../wsIntrn.h ../uemf.h

../ejlex.o:  ../ejlex.c ../ej.h ../ejIntrn.h ../uemf.h

../ejparse.o:  ../ejparse.c ../ej.h ../ejIntrn.h ../uemf.h

../form.o:  ../form.c ../webs.h ../wsIntrn.h ../ej.h ../ejIntrn.h ../uemf.h

../h.o:  ../h.c ../uemf.h

../handler.o:  ../handler.c ../webs.h ../wsIntrn.h ../ej.h ../ejIntrn.h ../uemf.h

../md5c.o:  ../md5.h ../wsIntrn.h ../uemf.h

../mime.o:  ../mime.c ../webs.h ../wsIntrn.h ../ej.h ../ejIntrn.h ../uemf.h

../misc.o:  ../misc.c ../uemf.h

../page.o:  ../page.c ../webs.h ../wsIntrn.h ../ej.h ../ejIntrn.h ../uemf.h

../ringq.o:  ../ringq.c ../uemf.h

../rom.o:  ../rom.c ../webs.h ../wsIntrn.h ../ej.h ../ejIntrn.h ../uemf.h

../security.o:  ../security.c ../webs.h ../wsIntrn.h ../ej.h ../ejIntrn.h ../uemf.h

../sock.o:  ../sock.c ../uemf.h

../sockGen.o:  ../sockGen.c ../uemf.h

../sym.o:  ../sym.c ../uemf.h

../uemf.o:  ../uemf.c ../uemf.h

../um.o:  ../webs.h ../wsIntrn.h ../um.h ../uemf.h

../umui.o:  ../webs.h ../wsIntrn.h ../um.h ../uemf.h

../url.o:  ../url.c ../webs.h ../wsIntrn.h ../ej.h ../ejIntrn.h ../uemf.h

../value.o:  ../value.c ../uemf.h

../webrom.o:  ../webrom.c ../webs.h ../wsIntrn.h ../ej.h ../ejIntrn.h ../uemf.h

../webs.o:  ../webs.c ../webs.h ../wsIntrn.h ../ej.h ../ejIntrn.h ../uemf.h

../websda.o:  ../webs.h ../wsIntrn.h ../websda.h ../uemf.h

../websuemf.o:  ../websuemf.c ../webs.h ../wsIntrn.h ../ej.h ../ejIntrn.h ../uemf.h

../websSSL.o:  ../websSSL.c ../websSSL.h ../wsIntrn.h ../uemf.h

../sock.o:  ../sock.c ../uemf.h

../sockGen.o:  ../sockGen.c ../uemf.h

main.o:  main.c ../wsIntrn.h ../webs.h ../ej.h ../ejIntrn.h ../uemf.h

#
#	Transition rules (add -o to put object in right directory)
#
.SUFFIXES: .c .o

.c.o:
	$(CC) -c -o $@ $(DEBUG) $(CFLAGS) $(BSP_CFLAGS) $(IFLAGS) $<

⌨️ 快捷键说明

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