# Generic Makefile for PARI programs -- i686 running linux (ix86 kernel) 32-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, Gp, 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 -O3 -DGCC_INLINE -Wall -fno-strict-aliasing -fomit-frame-pointer  
CFLAGS     = -O3 -DGCC_INLINE -Wall -fno-strict-aliasing -fomit-frame-pointer -O3 -DGCC_INLINE -Wall -fno-strict-aliasing -fomit-frame-pointer  
#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         = /usr/bin/gcc
CPPFLAGS   = -I. -I/usr/include/pari
LD         = /usr/bin/gcc
LDFLAGS    = -O3 -DGCC_INLINE -Wall -fno-strict-aliasing -fomit-frame-pointer   -Wl,-export-dynamic 
DLLD       = /usr/bin/gcc
DLLDFLAGS  = -shared $(CFLAGS) -Wl,-shared
EXTRADLLDFLAGS = -lc ${LIBS}
EXTRALIBS  =

RUNPTH     = -Wl,-rpath,/usr/lib
DLCFLAGS   = 
LIBS       = -ldl -lm -L/usr/lib -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)
	$(DLLD) -o $@ $(DLLDFLAGS) $(OBJS) $(EXTRADLLDFLAGS)

$(TARGET)-sta: $(OBJS)
	$(LD) -o $@ $(LDFLAGS) $< $(EXTRALIBS) $(STATIC) $(LIBS)

$(TARGET)-dyn: $(OBJS)
	$(LD) -o $@ $(LDFLAGS) $< $(RUNPTH) $(LIBS)

%.o: %.c
	$(CC) -c $(CFLAGS) $(CPPFLAGS) $(DLCFLAGS) $<
clean:
	-$(RM) *.o $(ALL)
