~ubuntu-branches/ubuntu/lucid/graphviz/lucid-security

« back to all changes in this revision

Viewing changes to makearch/hp.pa

  • Committer: Bazaar Package Importer
  • Author(s): Stephen M Moraco
  • Date: 2002-02-05 18:52:12 UTC
  • Revision ID: james.westby@ubuntu.com-20020205185212-8i04c70te00rc40y
Tags: upstream-1.7.16
ImportĀ upstreamĀ versionĀ 1.7.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# we had to port sections of MIT X11 (Xmu and Xaw).
 
2
# you're definitely on your own here.
 
3
# /home/ek/work... is wherever you have Xmu and Xaw.
 
4
# we further apologize that the following aren't singular.
 
5
X11INC=/usr/contrib/X11R6/include
 
6
X11LIB=/usr/contrib/X11R6/lib
 
7
 
 
8
# we've heard that the following works
 
9
#CC=cc -DSYSV -Ae +DAportable
 
10
CC=gcc
 
11
FLEX=flex -8
 
12
YACC=yacc
 
13
SED=sed
 
14
LN=ln
 
15
RM=rm -f
 
16
RANLIB=ranlib
 
17
MKDIR=mkdir
 
18
MKPATH=mkdir -p
 
19
AR=ar
 
20
SHLIB_LD=ld -b
 
21
SHLIB_SUFFIX=.sl
 
22
MV=mv
 
23
CP=cp -f
 
24
AWK=awk
 
25
SORT=sort
 
26
INSTALL=cp
 
27
CCFLAGS=-fpic -O -DNDEBUG
 
28
LDFLAGS=
 
29
 
 
30
.c.o:
 
31
        $(CC) -c $(CCFLAGS) $(DEFINES) $(INCS) $*.c -o $@
 
32