Ignore:
Timestamp:
Apr 6, 2009, 3:16:39 PM (15 years ago)
Author:
dkearney
Message:

adding a few object prototypes we can play with for future developement. the plot object is probably the most interesting. examples are located in examples/objects dirs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/objects/Makefile.in

    r1270 r1386  
    11
    22bindir          = @bindir@
    3 datadir         = @datadir@
    4 datarootdir     = @datarootdir@
     3datadir         = @datadir@
     4datarootdir     = @datarootdir@
    55exec_prefix     = @exec_prefix@
    66includedir      = @includedir@
     
    88mandir          = @mandir@
    99prefix          = @prefix@
    10 srcdir          = @srcdir@
    11 incdir          = $(prefix)/include
     10srcdir          = @srcdir@
     11incdir          = $(prefix)/include
    1212
    13 INSTALL         = @INSTALL@
     13INSTALL         = @INSTALL@
    1414
    1515CXX             = @CXX@
     
    1717CCC             = @CC@
    1818CFLAGS_DEBUG    = @CFLAGS_DEBUG@
     19CFLAGS_WARNING  = -Wall
    1920CFLAGS_OPTIMIZE = @CFLAGS_OPTIMIZE@
    2021STLIB_LD        = @STLIB_LD@
     
    2627LIB_SEARCH_DIRS = @LIB_SEARCH_DIRS@
    2728CFLAGS          = @CFLAGS@
    28 RM              = rm -f
    29 CC_SWITCHES     = $(CFLAGS) $(INCLUDES) $(DEFINES)
     29RM              = rm -f
     30CC_SWITCHES = $(CFLAGS) $(INCLUDES) $(DEFINES) $(CFLAGS_DEBUG)
    3031
    31 INCLUDES        = \
     32INCLUDES    = \
    3233                -I. \
    3334                -I../core \
     
    3536                -I$(srcdir)/../core \
    3637                -I$(includedir)
    37 LIBS            = -L../core -lrappture
     38LIBS        = -L../core -lrappture
    3839
    39 RANLIB          = @RANLIB@
    40 AR              = ar
    41 VPATH           = $(srcdir)
     40RANLIB      = @RANLIB@
     41AR          = ar
     42VPATH       = $(srcdir)
    4243
    4344# tell make where to find the expat & libscew headers
     
    4546
    4647# define our compiling environment
    47 #
    48 DEBUG           = -g -Wall
    49 DEBUG_PLUS      = -g -DDEBUG
    5048LN              = ln -s
    5149
    5250HEADERS = \
     51                RpAccessor.h \
     52                RpArray1D.h \
     53                RpBoolean.h \
    5354                RpChain.h \
     55                RpChainHelper.h \
     56                RpChoice.h \
     57                RpCurve.h \
    5458                RpInt.h \
    5559                RpHash.h \
    5660                RpHashHelper.h \
    5761                RpNumber.h \
     62                RpPlot.h \
    5863                RpPool.h \
     64                RpString.h \
    5965                RpVariable.h
    6066
    61 #               RpBoolean.h \
    62                 RpAbout.h \
    63                 RpNumber.h \
    64                 RpOption.h \
    65                 RpString.h \
    66                 RpChoice.h \
    67                 RpVariable.h
    6867
    6968OBJS = \
     69                RpArray1D.o \
     70                RpBoolean.o \
    7071                RpChain.o \
     72                RpChoice.o \
     73                RpCurve.o \
     74                RpChainHelper.o \
    7175                RpHash.o \
    7276                RpHashHelper.o \
    7377                RpNumber.o \
     78                RpPlot.o \
    7479                RpPool.o \
     80                RpString.o \
     81                RpUtils2.o \
    7582                RpVariable.o
    7683
    77 #               RpAbout.o \
    78                 RpBoolean.o \
    79                 RpChoice.o \
    80                 RpNumber.o \
    81                 RpOption.o \
    82                 RpString.o \
    83                 RpVariable.o
    8484
    85 name            = RpObjects
    86 lib             = lib$(name).a
    87 shared_lib      = lib$(name)$(SHLIB_SUFFIX)
     85name        = RpObjects
     86lib         = lib$(name).a
     87shared_lib  = lib$(name)$(SHLIB_SUFFIX)
    8888
    8989all: build_lib
     
    108108        done
    109109
    110 .cc.o: 
    111         $(CXX) $(CC_SWITCHES) -c $? 
     110.cc.o:
     111        $(CXX) $(CC_SWITCHES) -c $?
    112112.c.o:
    113         $(CCC) $(CC_SWITCHES) -c $? 
     113        $(CCC) $(CC_SWITCHES) -c $?
    114114
    115 clean: 
     115clean:
    116116        $(RM) $(OBJS) $(lib) $(shared_lib)
    117117
Note: See TracChangeset for help on using the changeset viewer.