File: Imakefile

package info (click to toggle)
xgobi 19980413-3
  • links: PTS
  • area: non-free
  • in suites: slink
  • size: 3,532 kB
  • ctags: 4,195
  • sloc: ansic: 47,796; makefile: 861; sh: 60
file content (29 lines) | stat: -rw-r--r-- 767 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**/#
/**/#	This is an Imakefile for the template program.  The only changes that
/**/#	should need to be made is for the PROGD and XGOBID variables.
/**/#
/**/#  Set PROGD to the directory containing 
/**/#  the xgvis directories src, help, etc.
/**/#
          PROGD = $(PWD)/..
/**/#
/**/#  Set XGOBID to the directory containing 
/**/#  the xgobi directories src, help, ps, etc.
/**/#  Both the include files and the library are there.
/**/#
          XGOBID = /usr/dfs/xgobi

              CC = cc
              LD = 
     CDEBUGFLAGS = -g

  EXTRA_INCLUDES = -I$(XGOBID)/src
 LOCAL_LIBRARIES = -L$(XGOBID)/src -lxgobi XawClientLibs
   SYS_LIBRARIES = -lm
         DEFINES = -DPROGD=\"$(PROGD)\"

SRCS = *.c
OBJS = prog.o widgets.o 

ComplexProgramTarget(prog)