mirror of
https://git.freebsd.org/ports.git
synced 2025-06-30 00:50:29 -04:00
37 lines
1.1 KiB
Text
37 lines
1.1 KiB
Text
*** Makefile.orig Wed Feb 5 11:08:43 1992
|
|
--- Makefile Mon Jan 1 23:20:07 1996
|
|
***************
|
|
*** 25,33 ****
|
|
ID="@(#)Makefile:3.9 -- 5/15/91 19:30:15";
|
|
SHELL = /bin/sh
|
|
! #HZ = ???? #(read from environment)
|
|
CFLAGS = -DTIME
|
|
! OPTON = -O #optimization on (give it your best shot)
|
|
! # -- check your compiler man
|
|
! OPTOFF = -Od #optimization off -- check your compiler man
|
|
# local directories
|
|
PROGDIR = ./pgms
|
|
--- 25,34 ----
|
|
ID="@(#)Makefile:3.9 -- 5/15/91 19:30:15";
|
|
SHELL = /bin/sh
|
|
! HZ = 128
|
|
CFLAGS = -DTIME
|
|
! OPTON = -s -static -O -finline-functions -funroll-loops -fomit-frame-pointer
|
|
! #optimization on (give it your best shot)
|
|
! # -- check your compiler man
|
|
! OPTOFF = -O0 -static #optimization off -- check your compiler man
|
|
# local directories
|
|
PROGDIR = ./pgms
|
|
***************
|
|
*** 36,40 ****
|
|
TESTDIR = ./testdir
|
|
! RESULTDIR = ./results
|
|
! TMPDIR = ./tmp
|
|
# other directories
|
|
INCLDIR = /usr/include
|
|
--- 37,41 ----
|
|
TESTDIR = ./testdir
|
|
! # RESULTDIR = ./results
|
|
! # TMPDIR = /var/tmp
|
|
# other directories
|
|
INCLDIR = /usr/include
|