mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
d331bc0af3
derived from Forth. PR: 4446 Submitted by: Pedro Giffuni <pgiffuni@fps.biblos.unal.edu.co>
49 lines
919 B
Plaintext
49 lines
919 B
Plaintext
*** 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)
|