Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lyskom-server-ceder-1616-generations-topgit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
b743e8a8
Commit
b743e8a8
authored
32 years ago
by
Per Cederqvist
Browse files
Options
Downloads
Patches
Plain Diff
PROFILE-LIB-SUFFIX: Used in the name of libraries when profiling.
parent
0ccb2617
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
config/ChangeLog
+6
-0
6 additions, 0 deletions
config/ChangeLog
config/balance-defs.make
+16
-6
16 additions, 6 deletions
config/balance-defs.make
config/sun4os4-defs.make
+6
-3
6 additions, 3 deletions
config/sun4os4-defs.make
with
28 additions
and
9 deletions
config/ChangeLog
+
6
−
0
View file @
b743e8a8
Tue Apr 14 17:38:37 1992 Per Cederqvist (ceder@lysator)
* balance-defs.make: Updated.
* sunos4-defs.make (PROFILE-LIB-SUFFIX): New variable.
Sat Apr 4 19:11:53 1992 Per Cederqvist (ceder@lysator)
* sun4os4-defs.make (CC): gcc2 has been renamed to gcc.
...
...
This diff is collapsed.
Click to expand it.
config/balance-defs.make
+
16
−
6
View file @
b743e8a8
#
# $Id: balance-defs.make,v 1.1
0
1992/04/
0
4 1
7:23:30
ceder Exp $
# $Id: balance-defs.make,v 1.1
1
1992/04/
1
4 1
5:56:27
ceder Exp $
# Copyright (C) 1991 Lysator Academic Computer Association.
#
# This file is part of the LysKOM server.
...
...
@@ -22,7 +22,7 @@
#
# Please mail bug reports to bug-lyskom@lysator.liu.se.
#
# $Id: balance-defs.make,v 1.1
0
1992/04/
0
4 1
7:23:30
ceder Exp $
# $Id: balance-defs.make,v 1.1
1
1992/04/
1
4 1
5:56:27
ceder Exp $
# This file is included by all Makefiles in the LysKOM hierarchy.
# It gives default values for all variables that is normally used.
# TOPDIR and SCRIPTDIR must be set before this file is included.
...
...
@@ -39,6 +39,7 @@ TOUCHLIB = ranlib
SYMLINK
=
ln
-s
YACC
=
bison
-d
LEX
=
flex
MKDIR
=
/bin/mkdir
INCLUDEDIR
=
$(
TOPDIR
)
/include
LIBDIR
=
$(
TOPDIR
)
/lib
...
...
@@ -46,11 +47,11 @@ ANSIDIR = $(INCLUDEDIR)/ansi
INCLUDES
=
-I
$(
ANSIDIR
)
-I
$(
INCLUDEDIR
)
OPTIMIZE-FLAGS
=
-O
MISC-CFLAGS
=
-g
-Wall
MISC-CFLAGS
=
-g
-Wall
-Wstrict-prototypes
-Wmissing-prototypes
PIPE
=
-pipe
# -h flag makes NULL pointer references generate runtime errors
LDFLAGS
=
-h
-L
$(
LIBDIR
)
LDFLAGS
=
-h
-L
$(
LIBDIR
)
$(
PROFILE-FLAGS
)
# Library for hostname lookup.
LIBRESOLV
=
-lresolv
...
...
@@ -60,9 +61,18 @@ LIBRESOLV = -lresolv
#LIBIDENT = -lauthuser
LIBIDENT
=
CFLAGS
=
$(
INCLUDES
)
$(
OPTIMIZE-FLAGS
)
$(
MISC-CFLAGS
)
$(
PIPE
)
$(
TARGET
)
CFLAGS
=
$(
INCLUDES
)
$(
OPTIMIZE-FLAGS
)
$(
MISC-CFLAGS
)
$(
PIPE
)
$(
TARGET
)
$(
PROFILE-FLAGS
)
# LysKOM executables that the typical user don't use go here.
# Are we profiling? PROFILE-FLAGS are sent to CC when compiling and linking.
# PROFILE-LIB-SUFFIX are included in all library names so that we can have
# one profiled and one non-profiled version at the same time. But make sure
# to delete all .o files when switching between profiling and not profiling...
#PROFILE-FLAGS = -pg -static
#PROFILE-LIB-SUFFIX = -pg
PROFILE-FLAGS
=
PROFILE-LIB-SUFFIX
=
# LysKOM executables that the typical user doesn't use go here.
# (The server, dbck, et c)
LYSKOMSYSBIN
=
/usr/lyskom/bin
...
...
This diff is collapsed.
Click to expand it.
config/sun4os4-defs.make
+
6
−
3
View file @
b743e8a8
#
# $Id: sun4os4-defs.make,v 1.1
7
1992/04/14 15:
42:48
ceder Exp $
# $Id: sun4os4-defs.make,v 1.1
8
1992/04/14 15:
56:30
ceder Exp $
# Copyright (C) 1991 Lysator Academic Computer Association.
#
# This file is part of the LysKOM server.
...
...
@@ -22,7 +22,7 @@
#
# Please mail bug reports to bug-lyskom@lysator.liu.se.
#
# $Id: sun4os4-defs.make,v 1.1
7
1992/04/14 15:
42:48
ceder Exp $
# $Id: sun4os4-defs.make,v 1.1
8
1992/04/14 15:
56:30
ceder Exp $
# This file is included by all Makefiles in the LysKOM hierarchy.
# It gives default values for all variables that is normally used.
# TOPDIR and SCRIPTDIR must be set before this file is included.
...
...
@@ -42,6 +42,10 @@ YACC = bison -d
LEX
=
flex
MKDIR
=
/bin/mkdir
#Use the commented versions in the distribution!
#INCLUDEDIR = $(TOPDIR)/include
#LIBDIR = $(TOPDIR)/lib
#ANSIDIR = $(INCLUDEDIR)/ansi
INCLUDEDIR
=
/usr/local/include/lyskom
LIBDIR
=
/usr/local/lib/lyskom
#ANSIDIR = $(INCLUDEDIR)/ansi
...
...
@@ -50,7 +54,6 @@ ANSIDIR=/usr/gnu/var/gcc/sunos4.1.1/2.0/proto-include
INCLUDES
=
-I
$(
ANSIDIR
)
-I
$(
INCLUDEDIR
)
OPTIMIZE-FLAGS
=
-O3
#MISC-CFLAGS = -g -Wall
MISC-CFLAGS
=
-g
-Wall
-Wstrict-prototypes
-Wmissing-prototypes
# You sometimes can't use -pipe on a sun3, since Suns /bin/as can't read
# stdin. If you use gas you can use -pipe.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment