blob: b3ca7e041938a92158f2fb1ab35a17d83592c6f4 (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
--- Makefile-orig Tue Nov 7 14:14:11 2006
+++ Makefile Tue Nov 7 14:20:43 2006
@@ -1,8 +1,9 @@
# Copyright (C) 1990-2006 Bard Ermentrout
# Edited for Debian GNU/Linux.
DESTDIR =
-BINDIR = $(DESTDIR)/usr/X11R6/bin
-DOCDIR = $(DESTDIR)/usr/share/doc/xppaut
+BINDIR = $(PREFIX)/bin
+DOCDIR = $(PREFIX)/share/doc/xppaut
+EXAMPLESDIR = $(PREFIX)/share/examples/xppaut
# End Debian Edit
#################################
#
@@ -20,10 +21,10 @@
##################################
# Standard Linux distributions #
##################################
-CFLAGS= -g -O -DAUTO -DCVODE_YES -DHAVEDLL -DMYSTR=$(VERSION) -I/usr/X11R6/include
+CFLAGS= -DAUTO -DCVODE_YES -DHAVEDLL -DMYSTR=$(VERSION) -I$(LOCALBASE)/include
#CFLAGS= -g -O -DAUTO -DCVODE_YES -DHAVEDLL -DMYSTR=$(VERSION) -I/usr/X11R6/include
-LDFLAGS= -L/usr/X11R6/lib
-LIBS= -lX11 -lm -ldl
+LDFLAGS= -L$(LOCALBASE)/lib
+LIBS= -lX11 -lm
# NOTE: Recent (RedHat 8) versions of GCC seem to no longer have
# the integer errno, so compile with the -DNOERRNO option as well
#
@@ -154,6 +155,8 @@
######################################################################
#
#
+
+all: xppaut
xppaut: mkI77 mkcvode $(OBJECTS) $(AUTOOBJ)
#
###########################################################
@@ -188,16 +191,16 @@
install: xppaut
# Make necessary installation directories
mkdir -p $(BINDIR)
- mkdir -p $(DOCDIR)/html
- mkdir -p $(DOCDIR)/examples
- mkdir -p $(DESTDIR)/usr/X11R6/man/man1
+# PORTDOCS mkdir -p $(DOCDIR)/html
+# PORTDOCS mkdir -p $(EXAMPLESDIR)
+ mkdir -p $(PREFIX)/man/man1
# Put everything home
strip xppaut
cp xppaut $(BINDIR)
- cp -r ode* $(DOCDIR)/examples
- cp -r help/* $(DOCDIR)/html
- cp README *.pdf $(DOCDIR)
- cp xppaut.1 $(DESTDIR)/usr/X11R6/man/man1
+# PORTDOCS cp -r ode* $(EXAMPLESDIR)
+# PORTDOCS cp -r help/* $(DOCDIR)/html
+# PORTDOCS cp README *.pdf $(DOCDIR)
+ cp xppaut.1 $(PREFIX)/man/man1
# End Debian Ed
uninstall:
# Remove everything you created
|