/usr/lib/clisp-2.49/clx/new-clx/Makefile is in clisp-module-clx 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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | # Makefile for CLISP module set clx
srcdir = /build/buildd/clisp-2.49/modules/clx/new-clx
CC = gcc
CPPFLAGS =
CFLAGS = -O
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
LN_S = ln -s
SHELL = /bin/sh
GENERATED = clx.fas image.fas resource.fas clx.o clx-preload.lisp
DISTRIBFILES = link.sh Makefile $(GENERATED) $(srcdir)/README \
$(srcdir)/clx.lisp $(srcdir)/image.lisp $(srcdir)/resource.lisp
distribdir =
### Custom defs.
CCMP2C = ../../ccmp2c
RM = rm -f
WANTS = -DWANT_XPM=1 -DWANT_XSHAPE=1
X_CFLAGS =
# default target: make the module
clisp-module : $(GENERATED)
clx.fas clx.lib: $(srcdir)/clx.lisp $(srcdir)/clx-preload.lisp
$(CLISP) -i $(srcdir)/clx-preload.lisp -c $(srcdir)/clx.lisp -o ./
image.fas: $(srcdir)/image.lisp clx.lib
$(CLISP) -i $(srcdir)/clx-preload.lisp -c $(srcdir)/image.lisp -o ./
resource.fas: $(srcdir)/resource.lisp clx.lib
$(CLISP) -i $(srcdir)/clx-preload.lisp -c $(srcdir)/resource.lisp -o ./
clx.d: $(srcdir)/clx.f
$(CCMP2C) $(srcdir)/clx.f > genclx.c
$(CC) $(CPPFLAGS) $(CFLAGS) $(WANTS) genclx.c -o genclx
./genclx -l -o clx.d > clx.d
$(RM) genclx.c
$(RM) genclx
clx.c: clx.d
$(CLISP) -C $(CLISP_LINKKIT)/modprep clx.d clx.c
clx.o: clx.c
$(CC) $(CPPFLAGS) $(CFLAGS) $(X_CFLAGS) -I$(CLISP_LINKKIT) -c clx.c
clx-preload.lisp : $(srcdir)/clx-preload.lisp
$(LN_S) $(srcdir)/clx-preload.lisp .
# Make a module distribution into $(distribdir)
clisp-module-distrib : clisp-module force
$(LN) $(DISTRIBFILES) $(distribdir)
mkdir -p $(distribdir)/demos
$(LN) $(srcdir)/demos/*.lisp $(srcdir)/demos/README $(distribdir)/demos/
mkdir -p $(distribdir)/demos/screens $(distribdir)/demos/xpms
$(LN) $(srcdir)/demos/screens/screen.* $(distribdir)/demos/screens/
$(LN) $(srcdir)/demos/xpms/*.xpm $(distribdir)/demos/xpms/
clean : force
$(RM) genclx.c genclx *.lib *.fas clx.e clx.d clx.c clx.o core *.a
distclean : clean
force:
|