Linux Lunar Lander.
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    matt3
    Posts: 690 from 2004/2/10
    I thought a while ago there was a port of Linux Lunar Lander to MOS. I went to Morphosnews and the link was dead. Does the port exist?

    Matt
  • »23.02.05 - 22:10
    Profile
  • Yokemate of Keyboards
    Yokemate of Keyboards
    Andreas_Wolf
    Posts: 12132 from 2003/5/22
    From: Germany
    LLL 1.4 was available on Louise's SDL site.
  • »25.02.05 - 11:06
    Profile
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    matt3
    Posts: 690 from 2004/2/10
    Quote:


    Andreas_Wolf wrote:
    LLL 1.4 was available on Louise's SDL site.


    The site is now closed. Does anyone have archive handy to upload?

    Matt
  • »25.02.05 - 14:38
    Profile
  • Butterfly
    Butterfly
    aliem
    Posts: 85 from 2003/12/11
    From: Italy
    I think it is not so hard to port it ... I'll try to make a makefile tonight :)

    There are only 3 C codeFiles
    try with:

    Quick Makefile
    Code:

    CC=gcc
    CFLAGS = $(shell sdl-config --cflags) -Wall -noixemul
    OBJECTS= SFont.o
    LLL: $(OBJECTS) LLL.o
    $(CC) $(CFLAGS) -o LLL $(OBJECTS) LLL.o $(LIBS)
    @echo "The executable is called LLL"


    if it doesn't works try deleting Code:
    $(shell sdl-config --cflags) 


    I don't know if it works.

    Bye
  • »25.02.05 - 21:02
    Profile