mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
87a67e83c0
o simplify DESCR, add WWW tag o support NOPORTDOCS in PLIST o style changes in Makefile: - un"echo" installation - merge do-install/post-install PR: 31075 Submitted by: KATO Tsuguru <tkato@prontomail.com>
58 lines
1.1 KiB
Plaintext
58 lines
1.1 KiB
Plaintext
*** Makefile.orig Mon May 9 03:26:47 1994
|
|
--- Makefile Fri Oct 5 05:18:35 2001
|
|
***************
|
|
*** 7,15 ****
|
|
|
|
INCLUDE =
|
|
|
|
! ATLCONFIG = -DMEMSTAT -DALIGNMENT -DEXPORT
|
|
|
|
! CFLAGS = $(COPTIONS) $(INCLUDE) $(ATLCONFIG)
|
|
|
|
ATLOBJ = atlast.o atlmain.o
|
|
|
|
--- 7,15 ----
|
|
|
|
INCLUDE =
|
|
|
|
! ATLCONFIG = -DMEMSTAT -DALIGNMENT -DEXPORT -DNOMEMCHECK
|
|
|
|
! CFLAGS += $(INCLUDE) $(ATLCONFIG)
|
|
|
|
ATLOBJ = atlast.o atlmain.o
|
|
|
|
***************
|
|
*** 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)
|