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

📄 makefile.freebsd

📁 类PASCAL语言的编译器,LINUX环境的,我没试过是否正确.
💻 FREEBSD
字号:
# FreeBSD Makefile v1 May 14 1998 (thanx to Chris Larsen)#########################################################################                                                                      ## fpl.library - A shared library interpreting script langauge.         ## Copyright (C) 1992-1998 FrexxWare                                    ## Author: Daniel Stenberg                                              ##                                                                      ## This program is free software; you may redistribute for non          ## commercial purposes only. Commercial programs must have a written    ## permission from the author to use FPL. FPL is *NOT* public domain!   ## Any provided source code is only for reference and for assurance     ## that users should be able to compile FPL on any operating system     ## he/she wants to use it in!                                           ##                                                                      ## You may not change, resource, patch files or in any way reverse      ## engineer anything in the FPL package.                                ##                                                                      ## This program is distributed in the hope that it will be useful,      ## but WITHOUT ANY WARRANTY; without even the implied warranty of       ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.                 ##                                                                      ## Daniel.Stenberg@sth.frontec.se                                       ##                                                                      ########################################################################## Chris' notes:##  check that you have:#  /usr/lib/libfpl.a#  /usr/lib/libfpl.so.1.0##  or in your local library##  else do :#  cp libfpl.a to /usr/lib/libfpl.a#  ln -sf /usr/lib/libfpl.a /usr/lib/libfpl.so.1.0.SUFFIXES: .o .c .c~ .h .h~ .a .i################################################# Below follows all UNIX macros/actions/lines: #################################################LIB     = libfpl.aTARGET  = FPLOBJS    = script.o numexpr.o caller.o hash.o statement.o memory.o frontend.o \          reference.o sprintf.o scan.o compile.o sscanf.oLIBOBJS = script.o numexpr.o hash.o statement.o memory.o frontend.o \          reference.o sprintf.o scan.o compile.o sscanf.oLIBDEP  = $(LIBOBJS)# if using the `gcc' compiler:CFLAGS  = -DUNIX -DSHARED -ansi -pedantic -g -funsigned-charCC      = gccLD      = ldLDFLAGS = -Bshareable -Bdynamicall:	$(LIB) SFPL$(LIB) : $(LIBDEP)	$(LD) $(LDFLAGS) $(LIBOBJS) -o $(LIB) -lc	cp -p FPL.h ../include/libraries$(TARGET) : $(OBJS)	$(CC) $(OBJS) -o $(TARGET).c.o:	$(CC) $(CFLAGS) -c $<clean:	rm *.o	rm $(LIB) SFPL# This compiling is using -DSFPL to make the MALLOC() macro not to use the# global `mem' variable!SFPL: caller.c FPL.h script.h Makefile.SVR4	$(CC) $(CFLAGS) -DSFPL -o SFPL caller.c -L. -lfpl$(OBJS): script.h FPL.hscript.o:script.cnumexpr.o:numexpr.ccaller.o:caller.cstatement.o:statement.chash.o:hash.cmemory.o:memory.c memory.hfrontend.o:frontend.creference.o:reference.csprintf.o:sprintf.cscan.o:scan.c

⌨️ 快捷键说明

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