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
405daf58
Commit
405daf58
authored
33 years ago
by
Per Cederqvist
Browse files
Options
Downloads
Patches
Plain Diff
Create lyskomd, not ramkomd and diskomd. (No change to dbck).
parent
f414a629
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/server/ChangeLog
+4
-0
4 additions, 0 deletions
src/server/ChangeLog
src/server/Makefile
+5
-21
5 additions, 21 deletions
src/server/Makefile
with
9 additions
and
21 deletions
src/server/ChangeLog
+
4
−
0
View file @
405daf58
Wed Aug 28 03:21:27 1991 Per Cederqvist (ceder at lysator)
* cache.c, end-of-atomic.c, lyskomd.c, ram-cache.c: Borttagna.
Mon Aug 26 04:13:34 1991 Per Cederqvist (ceder at lysator)
Mon Aug 26 04:13:34 1991 Per Cederqvist (ceder at lysator)
* simple-cache.c: Anv{nde BUFSIZ i st{llet f|r FILENAME_MAX.
* simple-cache.c: Anv{nde BUFSIZ i st{llet f|r FILENAME_MAX.
...
...
This diff is collapsed.
Click to expand it.
src/server/Makefile
+
5
−
21
View file @
405daf58
...
@@ -44,14 +44,7 @@ GEN_SRCS = connections.c log.c $(ATOMS_SRCS) \
...
@@ -44,14 +44,7 @@ GEN_SRCS = connections.c log.c $(ATOMS_SRCS) \
missing-ansi.c isc-parse.c memory.c
$(
PROTA_SRCS
)
$(
MUX_SRCS
)
\
missing-ansi.c isc-parse.c memory.c
$(
PROTA_SRCS
)
$(
MUX_SRCS
)
\
internal-connections.c
internal-connections.c
# Files that are necessary for ramkomd.
# Files for lyskomd.
RAMOBJS
=
ramkomd.o ram-smalloc.o ram-cache.o ram-parse.o ram-output.o
\
end-of-atomic.o string-malloc.o
RAM_SRCS
=
ramkomd.c ram-smalloc.c ram-cache.c ram-parse.c ram-output.c
\
end-of-atomic.c string-malloc.c
# Files for diskomd.
DISKOBJS
=
ramkomd.o ram-smalloc.o simple-cache.o ram-parse.o ram-output.o
\
DISKOBJS
=
ramkomd.o ram-smalloc.o simple-cache.o ram-parse.o ram-output.o
\
disk-end-of-atomic.o cache-node.o string-malloc.o
disk-end-of-atomic.o cache-node.o string-malloc.o
...
@@ -59,9 +52,6 @@ DISKOBJS = ramkomd.o ram-smalloc.o simple-cache.o ram-parse.o ram-output.o \
...
@@ -59,9 +52,6 @@ DISKOBJS = ramkomd.o ram-smalloc.o simple-cache.o ram-parse.o ram-output.o \
DISK_SRCS
=
ramkomd.c ram-smalloc.c simple-cache.c ram-parse.c ram-output.c
\
DISK_SRCS
=
ramkomd.c ram-smalloc.c simple-cache.c ram-parse.c ram-output.c
\
disk-end-of-atomic.c cache-node.c string-malloc.c
disk-end-of-atomic.c cache-node.c string-malloc.c
# Files that are necessary for lyskomd.
LYSOBJS
=
cache.o lyskomd.o smalloc.o
LYS_SRCS
=
cache.c lyskomd.c smalloc.c
DBCK
=
dbck.o dbck-cache2.o ram-smalloc.o ram-parse.o config.o
\
DBCK
=
dbck.o dbck-cache2.o ram-smalloc.o ram-parse.o config.o
\
kom-types.o
\
kom-types.o
\
...
@@ -77,7 +67,7 @@ SPECIALS = call-switch.incl com.h fnc-def-init.incl prot-a-parse-arg.c\
...
@@ -77,7 +67,7 @@ SPECIALS = call-switch.incl com.h fnc-def-init.incl prot-a-parse-arg.c\
SRCS
=
$(
GEN_SRCS
)
$(
RAM_SRCS
)
$(
DISK_SRCS
)
$(
LYS_SRCS
)
$(
DBCK_SRCS
)
SRCS
=
$(
GEN_SRCS
)
$(
RAM_SRCS
)
$(
DISK_SRCS
)
$(
LYS_SRCS
)
$(
DBCK_SRCS
)
PROGRAMS
=
ramkomd di
skomd dbck
PROGRAMS
=
ly
skomd dbck
all binaries
:
$(PROGRAMS)
all binaries
:
$(PROGRAMS)
...
@@ -85,14 +75,8 @@ all binaries: $(PROGRAMS)
...
@@ -85,14 +75,8 @@ all binaries: $(PROGRAMS)
includes
:
;
includes
:
;
libraries
:
;
libraries
:
;
ramkomd
:
$(RAMOBJS) $(GENOBJS)
lyskomd
:
$(DISKOBJS) $(GENOBJS)
$(
CC
)
$(
LDFLAGS
)
-o
ramkomd
$(
RAMOBJS
)
$(
GENOBJS
)
$(
LIBS
)
$(
CC
)
$(
LDFLAGS
)
-o
lyskomd
$(
DISKOBJS
)
$(
GENOBJS
)
$(
LIBS
)
diskomd
:
$(DISKOBJS) $(GENOBJS)
$(
CC
)
$(
LDFLAGS
)
-o
diskomd
$(
DISKOBJS
)
$(
GENOBJS
)
$(
LIBS
)
lyskomd
:
$(
CC
)
$(
CFLAGS
)
-o
lyskomd
dbck
:
$(DBCK)
dbck
:
$(DBCK)
$(
CC
)
$(
LDFLAGS
)
-o
dbck
$(
DBCK
)
$(
LIBS
)
$(
CC
)
$(
LDFLAGS
)
-o
dbck
$(
DBCK
)
$(
LIBS
)
...
@@ -120,7 +104,7 @@ fncdef-no-str-limit.txt: fncdef.txt
...
@@ -120,7 +104,7 @@ fncdef-no-str-limit.txt: fncdef.txt
install
:
$(PROGRAMS)
install
:
$(PROGRAMS)
echo
Server not installed.
echo
Server not installed.
# cp
di
skomd $(DESTDIR)/ramkomd # The utilites wants ramkomd.
# cp
ly
skomd $(DESTDIR)/ramkomd # The utilites wants ramkomd.
# cp dbck $(DESTDIR)/
# cp dbck $(DESTDIR)/
# strip $(DESTDIR)/dbck
# strip $(DESTDIR)/dbck
# Don't strip ramkomd - we want debugging info!
# Don't strip ramkomd - we want debugging info!
...
...
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