source: abuse/branches/pd/macabuse/imlib/maker.lsp @ 161

Last change on this file since 161 was 49, checked in by Sam Hocevar, 15 years ago
  • Imported original public domain release, for future reference.
File size: 2.5 KB
Line 
1(perm-space)
2(setq c_flags        "-DMANAGE_MEM")
3(setq outdir ".")
4
5
6(setq targets '(("image"                                    ; target name
7                 ("filter"   "gifread" "globals" "image"  "linked" "input"
8                  "mdlread"  "palette" "ppmread" "include" "xwdread"
9                  "fonts"    "decoder" "loader"  "glread" "texture" "specs"
10                  "supmorph" "image24" "pcxread" "timage" "jmalloc"
11                  "jrand"    "lbmread" "keys"    "dprint" "status"  "visobj")
12                 self
13                 ("include") "" (LINUX_X11 LINUX_SVGA AIX SUN SGI WATCOM))
14                ("packet" ("packet") self ("include") "" (LINUX_X11 LINUX_SVGA AIX SUN SGI WATCOM))
15
16                ("gui" ("pmenu" "scroller" "filesel" "tools" "guistat") self ("include"))
17                ("sound"  ("port/sgi/sound" "readwav") self ("include") "" (LINUX_X11 LINUX_SVGA))
18                ("net"    ("port/unix/jnet")
19                 self ("include") "" (LINUX_X11 LINUX_SVGA AIX SUN SGI))
20                ("dir"    ("port/unix/jdir") self ("include") "" (LINUX_X11 LINUX_SVGA AIX SUN SGI))
21                ("sound"    ("port/unix/sound")          self ("include") "" (AIX SUN))
22                ("sound"    ("port/sgi/sound" "readwav") self  ("include") "" (SGI))
23                ("joy"    ("port/unix/joystick")         self ("include") "" (AIX SUN SGI LINUX_X11 LINUX_SVGA))
24                ("winman" ("port/x11/video"
25                           "port/x11/mouse"
26                           "port/x11/event"
27                           "jwindow")        self ("include") "" (LINUX_X11 AIX SUN))
28
29                ("winman" ("port/x11/video"
30                           "port/x11/mouse"
31                           "port/x11/event"
32                           "jwindow")        self ("include") "" (SGI))
33
34                ("winman" ("port/svga/video"
35                           "port/svga/mouse"
36                           "port/svga/event"
37                           "jwindow")        self ("include") "" (LINUX_SVGA))
38
39                ("time"   ("port/unix/timing") self ("include") "" (LINUX_X11 LINUX_SVGA AIX SUN))
40                ("time"   ("port/sgi/timing") self ("include") "" (SGI))
41                   
42                   
43
44
45                ("sound" ("port/dos4gw/sound" "readwav" "port/dos4gw/profile" )
46                          self ("include" "c:\\sos\\include")  "" (WATCOM))
47                ("net"    ("port/dos4gw/jnet" "port/dos4gw/ipx"
48                           "port/dos4gw/bwtcp") self ("include")  "" (WATCOM))
49
50                ("dir"    ("port/dos4gw/jdir") self ("include")  "" (WATCOM))
51                ("winman" ("port/dos4gw/video"
52                           "port/dos4gw/mouse"
53                           "port/dos4gw/event"
54                           "port/dos4gw/doscall"
55                           "jwindow")        self ("include") "" (WATCOM))
56                ("joy"    ("port/dos4gw/joystick") self ("include")  "" (WATCOM))
57                ("time"   ("port/dos4gw/timing") self ("include")  "" (WATCOM))
58
59
60                ))
61                                       
62
63(setq imlib_dir      "./")
64(setq cflags         "")
65
66(compile-file        (concatenate 'string imlib_dir "makemake.lsp"))
67
68
69
70
71
72
73
74
Note: See TracBrowser for help on using the repository browser.