blob: 765909beae6d9053cf3720be73934c4b280a3a31 (
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
|
*** Makefile.orig Tue Aug 26 21:20:06 1997
--- Makefile Tue Aug 26 21:21:46 1997
***************
*** 1,13 ****
# Unix makefile for ATLAST
! COPTIONS = -O
LIBRARIES = -lm
INCLUDE =
! ATLCONFIG = -DMEMSTAT -DALIGNMENT -DEXPORT
CFLAGS = $(COPTIONS) $(INCLUDE) $(ATLCONFIG)
--- 1,13 ----
# Unix makefile for ATLAST
! COPTIONS = -O3 -pipe
LIBRARIES = -lm
INCLUDE =
! ATLCONFIG = -DMEMSTAT -DALIGNMENT -DEXPORT -DNOMEMCHECK
CFLAGS = $(COPTIONS) $(INCLUDE) $(ATLCONFIG)
***************
*** 33,39 ****
echo >>/tmp/regin.tmp
echo >>/tmp/regin.tmp
atlast -iregress </tmp/regin.tmp >/tmp/regout.tmp
! /bin/diff regout.txt /tmp/regout.tmp
clean:
rm -f $(APPS)
--- 33,39 ----
echo >>/tmp/regin.tmp
echo >>/tmp/regin.tmp
atlast -iregress </tmp/regin.tmp >/tmp/regout.tmp
! /usr/bin/diff regout.txt /tmp/regout.tmp
clean:
rm -f $(APPS)
|