/usr/lib/clisp-2.49.60+/postgresql/Makefile is in clisp-module-postgresql 1:2.49.20170913-4build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | # Makefile for CLISP module set postgresql
srcdir = /build/clisp-u7VYrq/clisp-2.49.20170913/modules/postgresql
CC = gcc
PQCPPFLAGS = -Wdate-time -D_FORTIFY_SOURCE=2
CFLAGS = -falign-functions=4
CLISP = /build/clisp-u7VYrq/clisp-2.49.20170913/debian/build/clisp -K base -E UTF-8 -Emisc 1:1 -Epathname 1:1 -norc -norc -q
CLISP_LINKKIT = /build/clisp-u7VYrq/clisp-2.49.20170913/debian/build/linkkit
LN = ln
MAKE = make
SHELL = /bin/sh
GENERATED = postgresql.o postgresql.fas sql.fas
DISTRIBFILES = link.sh Makefile $(GENERATED) \
$(srcdir)/postgresql.lisp $(srcdir)/sql.lisp $(srcdir)/README
distribdir =
# default target: make the module
clisp-module : $(GENERATED)
postgresql.c postgresql.fas : $(srcdir)/postgresql.lisp
$(CLISP) -c $(srcdir)/postgresql.lisp -o ./
postgresql.o : postgresql.c config.h
$(CC) $(CPPFLAGS) $(PQCPPFLAGS) $(CFLAGS) -I$(CLISP_LINKKIT) \
-c postgresql.c
sql.fas: $(srcdir)/sql.lisp
$(CLISP) -c $(srcdir)/sql.lisp -o ./
# Make a module distribution into $(distribdir)
clisp-module-distrib : clisp-module force
$(LN) $(DISTRIBFILES) $(distribdir)
clean : force
rm -f core *.o *.a *.fas *.lib
distclean : clean
force :
|