/usr/lib/clisp-2.49/zlib/Makefile is in clisp-module-zlib 1:2.49-9ubuntu1.
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 | # Makefile for CLISP module set zlib
srcdir = /build/buildd/clisp-2.49/modules/zlib
CC = gcc
CPPFLAGS =
CFLAGS = -falign-functions=4
CLISP = /build/buildd/clisp-2.49/debian/build/clisp -K boot -E UTF-8 -Epathname 1:1 -Emisc 1:1 -norc -norc -q
CLISP_LINKKIT = /build/buildd/clisp-2.49/debian/build/linkkit
LN = ln
MAKE = make
SHELL = /bin/sh
GENERATED = zlib.o zlib.fas
DISTRIBFILES = link.sh Makefile $(GENERATED) $(srcdir)/zlib.lisp
distribdir =
# default target: make the module
clisp-module : $(GENERATED)
zlib.c zlib.fas : $(srcdir)/zlib.lisp
$(CLISP) -c $(srcdir)/zlib.lisp -o ./
zlib.o : zlib.c config.h
$(CC) $(CPPFLAGS) $(CFLAGS) -I$(CLISP_LINKKIT) -c zlib.c
# 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 :
|