Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
ac8ad8f4
Commit
ac8ad8f4
authored
32 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Changed ``undefineds'' stuff to be a C file that gets linked in instead of
assuming the existance of the -u switch.
parent
b83d955d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lisp/GNUmakefile
+5
-11
5 additions, 11 deletions
lisp/GNUmakefile
with
5 additions
and
11 deletions
lisp/GNUmakefile
+
5
−
11
View file @
ac8ad8f4
# $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/GNUmakefile,v 1.
3
1992/09/0
4 08:11:54
wlott Exp $
# $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/GNUmakefile,v 1.
4
1992/09/0
8 20:16:06
wlott Exp $
all
:
lisp.nm
...
...
@@ -9,7 +9,7 @@ include Config
SRCS
=
lisp.c coreparse.c alloc.c monitor.c print.c interr.c os-common.c
\
vars.c parse.c interrupt.c search.c validate.c gc.c globals.c
\
dynbind.c breakpoint.c regnames.c backtrace.c save.c purify.c
\
socket.c
${
ARCH_SRC
}
${
ASSEM_SRC
}
${
OS_SRC
}
socket.c
undefineds.c
${
ARCH_SRC
}
${
ASSEM_SRC
}
${
OS_SRC
}
OBJS
=
$(
patsubst %.c,%.o,
$(
patsubst %.S,%.o,
$(
SRCS
)))
...
...
@@ -22,11 +22,11 @@ lisp.nm: lisp
$(
NM
)
lisp
>>
,lisp.nm
mv
,lisp.nm lisp.nm
lisp
:
${OBJS} version
undefineds
lisp
:
${OBJS} version
echo
-n
'1 + '
|
cat
- version | bc
>
,version
mv
,version version
$(
CC
)
${
CFLAGS
}
-DVERSION
=
`
cat
version
`
-c
version.c
$(
CC
)
$(
CFLAGS
)
${
OS_LINK_FLAGS
}
`
cat
undefineds
`
-o
,lisp
\
$(
CC
)
$(
CFLAGS
)
${
OS_LINK_FLAGS
}
-o
,lisp
\
${
OBJS
}
version.o
\
${
OS_LIBS
}
-lm
mv
-f
,lisp lisp
...
...
@@ -34,12 +34,6 @@ lisp: ${OBJS} version undefineds
version
:
echo
0
>
version
undefineds
:
undefineds.src
${
CPP
}
undefineds.src |
\
sed
-e
'/^#/d'
-e
'/^[ ]*$$/d'
-e
's/.*/
${
UNDEFSYMPATTERN
}
/'
|
\
sort
-u
>
,undefineds
mv
,undefineds undefineds
### Socket.c needs to be compiled with UNIXCONN defined.
socket.o
:
socket.c
$(
COMPILE.c
)
-DUNIXCONN
socket.c
...
...
@@ -49,7 +43,7 @@ internals.h:
@
false
clean
:
rm
-f
Depends
undefineds
*
.o lisp lisp.nm
rm
-f
Depends
*
.o lisp lisp.nm
core
depend
:
$(
CC
)
-MM
-E
${
CFLAGS
}
${
CPPFLAGS
}
${
SRCS
}
>
,depends
...
...
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