blob: a10c74b0e03fdc424dda797927aee40333dc42f8 (
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
|
*** Makefile.orig Mon May 9 03:26:47 1994
--- Makefile Fri Oct 5 05:18:35 2001
***************
*** 18,24 ****
all: $(APPS)
atlast: $(ATLOBJ)
! cc $(CFLAGS) $(ATLOBJ) -o atlast $(LIBRARIES)
atlast.o: atlast.c atldef.h
atldef.h: atlast.h
--- 18,24 ----
all: $(APPS)
atlast: $(ATLOBJ)
! $(CC) $(CFLAGS) $(ATLOBJ) -o atlast $(LIBRARIES)
atlast.o: atlast.c atldef.h
atldef.h: atlast.h
***************
*** 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)
|