Changeset 66 for abuse/trunk


Ignore:
Timestamp:
Mar 2, 2008, 7:43:35 PM (15 years ago)
Author:
Sam Hocevar
Message:
  • Added the proper .h and .hpp files to _SOURCES variables. As a result, "make dist" now generates a buildable tarball.
Location:
abuse/trunk
Files:
12 deleted
21 edited
4 moved

Legend:

Unmodified
Added
Removed
  • abuse/trunk/osx/abuse_sdl.pbproj/project.pbxproj

    r59 r66  
    820820                        refType = 4;
    821821                };
    822                 F5ACF28F0305D66801A80002 = {
    823                         isa = PBXFileReference;
    824                         path = globals.hpp;
    825                         refType = 4;
    826                 };
    827822                F5ACF2900305D66801A80002 = {
    828823                        isa = PBXFileReference;
     
    973968                        isa = PBXFileReference;
    974969                        path = scroller.hpp;
    975                         refType = 4;
    976                 };
    977                 F5ACF2AE0305D66801A80002 = {
    978                         isa = PBXFileReference;
    979                         path = sdriver.hpp;
    980970                        refType = 4;
    981971                };
  • abuse/trunk/src/Makefile.am

    r62 r66  
    55bin_PROGRAMS = abuse
    66
    7 abuse_SOURCES = specache.cpp netcfg.cpp text_gui.cpp innet.cpp \
    8         chat.cpp endgame.cpp version.cpp loadgame.cpp profile.cpp \
    9         cop.cpp statbar.cpp compiled.cpp ant.cpp sensor.cpp \
    10         demo.cpp lcache.cpp nfclient.cpp \
    11         username.cpp clisp.cpp gui.cpp transp.cpp collide.cpp trig.cpp \
    12         property.cpp cache.cpp particle.cpp objects.cpp \
    13         extend.cpp console.cpp ability.cpp items.cpp dev.cpp chars.cpp \
    14         level.cpp smallfnt.cpp automap.cpp help.cpp intsect.cpp \
    15         loader2.cpp seq.cpp points.cpp fnt6x13.cpp morpher.cpp \
    16         menu.cpp director.cpp view.cpp config.cpp game.cpp light.cpp \
    17         devsel.cpp crc.cpp gamma.cpp language.cpp
     7abuse_SOURCES = \
     8    specache.cpp specache.hpp \
     9    netcfg.cpp netcfg.hpp \
     10    text_gui.cpp text_gui.hpp \
     11    innet.cpp \
     12    chat.cpp chat.hpp \
     13    endgame.cpp \
     14    version.cpp \
     15    loadgame.cpp loadgame.hpp \
     16    profile.cpp profile.hpp \
     17    cop.cpp cop.hpp \
     18    statbar.cpp \
     19    compiled.cpp compiled.hpp \
     20    ant.cpp ant.hpp \
     21    sensor.cpp \
     22    demo.cpp demo.hpp \
     23    lcache.cpp lcache.hpp \
     24    nfclient.cpp nfclient.hpp \
     25    username.cpp \
     26    clisp.cpp clisp.hpp \
     27    gui.cpp gui.hpp \
     28    transp.cpp transp.hpp \
     29    collide.cpp \
     30    trig.cpp \
     31    property.cpp property.hpp \
     32    cache.cpp cache.hpp \
     33    particle.cpp particle.hpp \
     34    objects.cpp objects.hpp \
     35    extend.cpp extend.hpp \
     36    console.cpp console.hpp \
     37    ability.cpp ability.hpp \
     38    items.cpp items.hpp \
     39    dev.cpp dev.hpp \
     40    chars.cpp chars.hpp \
     41    level.cpp level.hpp \
     42    smallfnt.cpp \
     43    automap.cpp automap.hpp \
     44    help.cpp help.hpp \
     45    intsect.cpp intsect.hpp \
     46    loader2.cpp loader2.hpp \
     47    seq.cpp seq.hpp \
     48    points.cpp points.hpp \
     49    fnt6x13.cpp \
     50    morpher.cpp morpher.hpp \
     51    menu.cpp menu.hpp \
     52    director.cpp director.hpp \
     53    view.cpp view.hpp \
     54    config.cpp config.hpp \
     55    game.cpp game.hpp \
     56    light.cpp light.hpp \
     57    devsel.cpp devsel.hpp \
     58    crc.cpp crc.hpp \
     59    gamma.cpp gamma.hpp \
     60    language.cpp language.hpp \
     61    bus_type.hpp stack.hpp id.hpp netface.hpp isllist.hpp sbar.hpp \
     62    nfserver.hpp exitproc.hpp \
     63    $(NULL)
    1864
    1965EXTRALIBS = lisp/liblisp.a sdlport/libsdlport.a imlib/libimlib.a net/libnet.a
  • abuse/trunk/src/cache.hpp

    r62 r66  
    1414
    1515#include "lisp/lisp.hpp"
     16#include "sdlport/sound.hpp"
    1617
    1718#include "specs.hpp"
    1819#include "items.hpp"
    19 #include "sound.hpp"
    2020#include "particle.hpp"
    2121
  • abuse/trunk/src/chars.hpp

    r57 r66  
    1313
    1414#include "seq.hpp"
    15 #include "sound.hpp"
     15//#include "sound.hpp"
    1616#include "ability.hpp"
    1717#include "event.hpp"
  • abuse/trunk/src/clisp.cpp

    r61 r66  
    99
    1010#include "config.h"
     11
     12#include "sdlport/joy.hpp"
    1113
    1214#include "ant.hpp"
     
    2426#include "loadgame.hpp"
    2527#include "nfserver.hpp"
    26 #include "joy.hpp"
    2728#include "demo.hpp"
    2829#include "chat.hpp"
  • abuse/trunk/src/config.cpp

    r60 r66  
    1212#include <ctype.h>
    1313
     14#include "sdlport/joy.hpp"
     15
    1416#include "keys.hpp"
    1517#include "lisp.hpp"
    16 #include "joy.hpp"
    1718#include "jwindow.hpp"
    1819#include "config.hpp"
  • abuse/trunk/src/game.cpp

    r63 r66  
    2222#endif
    2323
     24#include "sdlport/joy.hpp"
     25
    2426#include "game.hpp"
    2527#include "dev.hpp"
    2628#include "id.hpp"
    27 #include "joy.hpp"
    2829#include "timing.hpp"
    2930#include "automap.hpp"
     
    3334#include "loader.hpp"
    3435#include "lisp.hpp"
    35 #include "monoprnt.hpp"
    3636#include "jrand.hpp"
    3737#include "config.hpp"
  • abuse/trunk/src/game.hpp

    r57 r66  
    2020#include "fonts.hpp"
    2121#include "loader.hpp"
    22 #include "monoprnt.hpp"
    2322#include "items.hpp"
    2423#include "jwindow.hpp"
  • abuse/trunk/src/imlib/Makefile.am

    r57 r66  
    22noinst_LIBRARIES = libimlib.a
    33
    4 libimlib_a_SOURCES = filter.cpp gifread.cpp globals.cpp image.cpp \
    5         linked.cpp input.cpp mdlread.cpp palette.cpp ppmread.cpp \
    6         include.cpp xwdread.cpp fonts.cpp decoder.cpp loader.cpp \
    7         glread.cpp texture.cpp specs.cpp supmorph.cpp image24.cpp \
    8         pcxread.cpp timage.cpp jmalloc.cpp jrand.cpp lbmread.cpp \
    9         targa.cpp keys.cpp dprint.cpp status.cpp visobj.cpp \
    10         packet.cpp readwav.cpp pmenu.cpp scroller.cpp filesel.cpp \
    11         tools.cpp guistat.cpp sprite.cpp jwindow.cpp
     4libimlib_a_SOURCES = \
     5    filter.cpp filter.hpp \
     6    gifread.cpp gifread.hpp \
     7    globals.cpp \
     8    image.cpp image.hpp \
     9    linked.cpp linked.hpp \
     10    input.cpp input.hpp \
     11    mdlread.cpp mdlread.hpp \
     12    palette.cpp palette.hpp \
     13    ppmread.cpp ppmread.hpp \
     14    include.cpp include.hpp \
     15    xwdread.cpp xwdread.hpp \
     16    fonts.cpp fonts.hpp \
     17    decoder.cpp \
     18    loader.cpp loader.hpp \
     19    glread.cpp glread.hpp \
     20    texture.cpp texture.hpp \
     21    specs.cpp specs.hpp \
     22    supmorph.cpp supmorph.hpp \
     23    image24.cpp image24.hpp \
     24    pcxread.cpp pcxread.hpp \
     25    timage.cpp timage.hpp \
     26    jmalloc.cpp jmalloc.hpp \
     27    jrand.cpp jrand.hpp \
     28    lbmread.cpp lbmread.hpp \
     29    targa.cpp targa.hpp \
     30    keys.cpp keys.hpp \
     31    dprint.cpp dprint.hpp \
     32    status.cpp status.hpp \
     33    visobj.cpp visobj.hpp \
     34    packet.cpp packet.hpp \
     35    readwav.cpp readwav.hpp \
     36    pmenu.cpp pmenu.hpp \
     37    scroller.cpp scroller.hpp \
     38    filesel.cpp filesel.hpp \
     39    tools.cpp tools.hpp \
     40    guistat.cpp guistat.hpp \
     41    sprite.cpp sprite.hpp \
     42    jwindow.cpp jwindow.hpp \
     43    main.hpp macs.hpp video.hpp gifdecod.hpp event.hpp mouse.hpp timing.hpp \
     44    jdir.hpp emm.hpp system.h std.h dos.h dir.h errs.h \
     45    $(NULL)
    1246
    1347INCLUDES = -I$(srcdir)
  • abuse/trunk/src/imlib/morph.cpp

    r56 r66  
    77 *  Jonathan Clark.
    88 */
     9
     10/* FIXME: this file is unused */
    911
    1012#include "config.h"
  • abuse/trunk/src/imlib/morph.hpp

    r57 r66  
    88 */
    99
     10/* FIXME: this file is unused */
     11
    1012#ifndef __MORPH_HPP_
    1113#define __MORPH_HPP_
    1214
    1315#include <stdio.h>
     16
    1417#include "image.hpp"
    1518#include "palette.hpp"
    1619#include "macs.hpp"
    17 #include "monoprnt.hpp"
    1820#include "specs.hpp"
    1921#include "filter.hpp"
  • abuse/trunk/src/imlib/texture.cpp

    r56 r66  
    1616#include "macs.hpp"
    1717#include "event.hpp"
     18#include "texture.hpp"
    1819
    1920#define SHB 7
  • abuse/trunk/src/lisp

    • Property svn:ignore set to
      Makefile.in
      Makefile
      .deps
      *.a
  • abuse/trunk/src/loader2.cpp

    r56 r66  
    1616#include "chars.hpp"
    1717#include "specs.hpp"
    18 #include "parse.hpp"
    1918#include "lisp.hpp"
    2019#include "jrand.hpp"
     
    2524#include "dev.hpp"
    2625#include "light.hpp"
    27 #include "morph.hpp"
    2826#include "dprint.hpp"
    2927#include "particle.hpp"
  • abuse/trunk/src/loader2.hpp

    r62 r66  
    1212
    1313#include "lisp/lisp.hpp"
     14#include "sdlport/sound.hpp"
    1415
    1516#include "jwindow.hpp"
    16 #include "sound.hpp"
    1717class property_manager;
    1818extern property_manager *prop;
  • abuse/trunk/src/net/Makefile.am

    r57 r66  
    22noinst_LIBRARIES = libnet.a
    33
    4 libnet_a_SOURCES = gserver.cpp gclient.cpp fileman.cpp sock.cpp tcpip.cpp
     4libnet_a_SOURCES = \
     5    gserver.cpp gserver.hpp \
     6    gclient.cpp gclient.hpp \
     7    fileman.cpp fileman.hpp \
     8    sock.cpp sock.hpp \
     9    tcpip.cpp tcpip.hpp \
     10    indian.hpp ghandler.hpp undrv.hpp \
     11    $(NULL)
    512
    613INCLUDES = -I$(srcdir) -I$(srcdir)/../ -I$(srcdir)/../imlib
  • abuse/trunk/src/objects.hpp

    r57 r66  
    1212#include "input.hpp"
    1313#include "chars.hpp"
    14 #include "sound.hpp"
     14//#include "sound.hpp"
    1515#include "morpher.hpp"
    1616#include "loader2.hpp"
  • abuse/trunk/src/sdlport/Makefile.am

    r57 r66  
    44noinst_LIBRARIES = libsdlport.a
    55
    6 libsdlport_a_SOURCES = video.cpp mouse.cpp event.cpp sound.cpp timing.cpp jdir.cpp joystick.cpp setup.cpp
     6libsdlport_a_SOURCES = \
     7    video.cpp \
     8    mouse.cpp \
     9    event.cpp \
     10    sound.cpp sound.hpp \
     11    timing.cpp \
     12    jdir.cpp \
     13    joystick.cpp joy.hpp \
     14    setup.cpp setup.h \
     15    $(NULL)
    716libsdlport_a_LIBADD =
    817
  • abuse/trunk/src/sdlport/jnet.cpp

    r56 r66  
    1717 *  Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
    1818 */
     19
     20/* FIXME: this file is unused */
    1921
    2022#include "config.h"
  • abuse/trunk/src/sdlport/jnet.hpp

    r64 r66  
    77 *  Jonathan Clark.
    88 */
     9
     10/* FIXME: this file is unused */
    911
    1012#ifndef __NET_HPP_
  • abuse/trunk/src/sdlport/video.cpp

    r56 r66  
    3131#endif  /* HAVE_OPENGL */
    3232#include "filter.hpp"
    33 #include "globals.hpp"
    3433#include "system.h"
    3534#include "video.hpp"
  • abuse/trunk/src/seq.cpp

    r56 r66  
    1212#include "seq.hpp"
    1313#include "macs.hpp"
    14 #include "parse.hpp"
    1514#include "lisp.hpp"
    1615
Note: See TracChangeset for help on using the changeset viewer.