summaryrefslogtreecommitdiff
path: root/www/analog/files/patch-aa
blob: 60ab16f52f16e493589ae424d69692a3a4ded5bd (plain) (blame)
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
*** Makefile.orig	Fri Mar 14 20:33:08 1997
--- Makefile	Sat May  3 03:09:30 1997
***************
*** 2,8 ****
  # Please read Readme.html, or http://www.statslab.cam.ac.uk/~sret1/analog/
  CC = gcc           # which compiler to use: eg cc, acc, gcc. NB Different
  #                    compilers need different CFLAGS, e.g., -O instead of -O2.
! CFLAGS = -O2       # options, e.g. for optimisation or ANSI compilation.
  DEFS =             # any of -DNOPIPES -DNODNS -DNODIRENT
  OS = UNIX          # Operating system: UNIX, DOS, WIN32, MAC or VMS
  LIBS = -lm         # extra libraries needed; Solaris 2 (SunOS 5) needs
--- 2,8 ----
  # Please read Readme.html, or http://www.statslab.cam.ac.uk/~sret1/analog/
  CC = gcc           # which compiler to use: eg cc, acc, gcc. NB Different
  #                    compilers need different CFLAGS, e.g., -O instead of -O2.
! #CFLAGS = -O2       # options, e.g. for optimisation or ANSI compilation.
  DEFS =             # any of -DNOPIPES -DNODNS -DNODIRENT
  OS = UNIX          # Operating system: UNIX, DOS, WIN32, MAC or VMS
  LIBS = -lm         # extra libraries needed; Solaris 2 (SunOS 5) needs
***************
*** 22,27 ****
--- 22,29 ----
  FORMSRC = analform.c        # The source code for that program
  FORMHTML = analogform.html  # Where the form itself will go
  FORMOPTS =                  # Extra analog options when constructing the form
+ 
+ all: $(PROGRAM)
  
  $(PROGRAM): $(OBJS) $(HEADERS) Makefile
  	$(CC) $(CFLAGS) $(OBJS) -o $(PROGRAM) $(LIBS)