/usr/share/doc/scheme2c-doc/examples/makefile is in scheme2c-doc 2012.10.14-1ubuntu1.
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 | all: clear hello npuzzle puzzle
S2CC=s2cc
S2CDIR=/usr/lib/scheme2c
S2C_LIBES=$(S2CDIR)/libs2cxl.a -lX11
%: %.sc
$(S2CC) -o $@ $< $(S2C_LIBES)
|