
| Current Path : /usr/share/doc/pari-doc/examples/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //usr/share/doc/pari-doc/examples/Makefile |
# Generic Makefile for PARI programs -- amd64 running linux (x86-64/GMP-6.1.2 kernel) 64-bit version
#
# This file was created by Configure. Any change made to it will be
# lost when Configure is run.
#
# make all will create
# extgcd-dyn (linked dynamically with libpari)
# extgcd-sta (linked statically)
# libextgcd.so (to be used by "install" under GP)
#
# Under GP: install("extgcd", "GG&&", "gcdex", "./libextgcd.so") enables
# you to subsequently use gcdex to call extgcd (see the reference manual).
#
# change this TARGET to compile your own programs
TARGET = extgcd
SHELL = /bin/sh
DBGFLAGS = -g -Wall
CFLAGS = -O3 -Wall -fno-strict-aliasing -fomit-frame-pointer
EXTRACFLAGS=
#CFLAGS = $(DBGFLAGS)
# Various linkers use different flags to force static compilation. Choose
# the one which is relevant for your installation.
#
# Solaris ld (global)
#STATIC = -dn
# Solaris ld (toggle: no shared object accepted until -B dynamic is seen
#STATIC = -B static
# gcc
#STATIC = -static
CC = cc
CPPFLAGS = -I. -I/usr/include/x86_64-linux-gnu
LD = cc
LDFLAGS = -g -O0 -Wall -fno-strict-aliasing -Wl,--export-dynamic -Wl,-z,relro
MODLD = cc
MODLDFLAGS = -shared $(CFLAGS) $(DLCFLAGS) -Wl,-shared -Wl,-z,relro
EXTRAMODLDFLAGS = -lc -lm -L/usr/lib/x86_64-linux-gnu -lpari
EXTRALIBS =
RUNPTH = -Wl,-rpath "/usr/lib/x86_64-linux-gnu"
DLCFLAGS = -fPIC
LIBS = -lm -L/usr/lib/x86_64-linux-gnu -lpari
RM = rm -f
OBJS = $(TARGET).o
DYN = lib$(TARGET).so
ALL = $(TARGET)-sta $(TARGET)-dyn $(DYN)
dft: $(TARGET)-dyn
all: $(ALL)
sta: $(TARGET)-sta
dyn: $(TARGET)-dyn
dynlib: $(DYN)
$(DYN): $(OBJS)
$(MODLD) -o $@ $(MODLDFLAGS) $(EXTRACFLAGS) $(OBJS) $(EXTRAMODLDFLAGS)
$(TARGET)-sta: $(OBJS)
$(LD) -o $@ $(LDFLAGS) $(EXTRACFLAGS) $< $(EXTRALIBS) $(STATIC) $(LIBS)
$(TARGET)-dyn: $(OBJS)
$(LD) -o $@ $(LDFLAGS) $(EXTRACFLAGS) $< $(EXTRALIBS) $(RUNPTH) $(LIBS)
%.o: %.c
$(CC) -c $(CFLAGS) $(EXTRACFLAGS) $(CPPFLAGS) $(DLCFLAGS) $<
clean:
-$(RM) *.o $(ALL)