On Tue, Mar 26, 2002 at 01:17:44PM +0100, Nicolas Neuss wrote: > > Hello, > > I'm already sorry for the following luser question, but I was not able > to find it out myself. I have succeeded in compiling the cmucl-3.0.9 > sources, but I'm wondering how to install the generated files. > > Especially, I do not understand how the "make install" part of the > Makefile is supposed to work, that is in which directory the files are > installed. For, example what is expected to be in DESTDIR for the > following? > > install: > echo installing > install -g root -o root -m 0644 own-work/linitian-override \ > $(DESTDIR)cmucl-source/usr/share/lintian/overrides/cmucl-source > install -g root -o root -m 0755 x86/motif/server/motifd \ > $(DESTDIR)cmucl-clm/usr/lib/cmucl/ > install -g root -o root -m 0644 x86/interface/clm-library.x86f \ > $(DESTDIR)cmucl-clm/usr/lib/cmucl/subsystems/clm-library.x86f > install -g root -o root -m 0644 own-work/config.lisp \ > $(DESTDIR)tmp/usr/lib/cmucl/ > ...
This does appear to be the Debian package sources, in which case you are attempting to build a Debian package. The proper way to do that would be "dpkg-buildpackage -b -uc -rfakeroot", though "fakeroot debian/rules binary" will do fine too. Make sure you've gotten all the Build-Depends from the debian/control file and the necessary development packages (dpkg-dev, devscripts, fakeroot). I'm not exactly too sure what you managed to accomplish already. However, you might want to consider installing like a normal Debian user would: apt-get install cmucl cmucl-normal cmucl-source. If you really want to recompile the whole deal, then 'apt-get source cmucl' and see my instructions above. You will, of course, need CMUCL to build it. The point of the cmucl-source package is to contain CLX, gray-streams, and other things, as well as the source for debugging purposes. (or so I remember pvaneynde saying). -- ; Matthew Danish <[EMAIL PROTECTED]> ; OpenPGP public key: C24B6010 on keyring.debian.org ; Signed or encrypted mail welcome. ; "There is no dark side of the moon really; matter of fact, it's all dark."
