Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alex D
GHC
Commits
de27420c
Commit
de27420c
authored
Jun 26, 2001
by
rrt
Browse files
[project @ 2001-06-26 16:31:07 by rrt]
Make system.c get compiled properly
parent
cfff5d21
Changes
1
Hide whitespace changes
Inline
Side-by-side
ghc/compiler/Makefile
View file @
de27420c
# -----------------------------------------------------------------------------
# $Id: Makefile,v 1.16
5
2001/06/26 11:07
:55 simonpj
Exp $
# $Id: Makefile,v 1.16
6
2001/06/26 1
6:3
1:07
rrt
Exp $
TOP
=
..
include
$(TOP)/mk/boilerplate.mk
...
...
@@ -130,6 +130,8 @@ ghc_501_at_least = $(shell if (test $(CANON_HC_VERSION) -gt 5000); then echo YES
ifneq
"$(ghc_501_at_least)" "YES"
boot
::
$(CP)
../lib/std/cbits/system.c main
# Build GHC 5.xx's version of systemCmd, so that even when bootstrapping with 4.08, we
# can assume that system works properly on Win32
C_SRCS
+=
main/system.c
SRC_CC_OPTS
+=
-I
$(GHC_LIB_DIR)
/std/cbits
SRC_MKDEPENDC_OPTS
+=
-I
$(GHC_LIB_DIR)
/std/cbits
...
...
@@ -151,17 +153,17 @@ ifeq "$(BootingFromHc)" "YES"
HCS
+=
rename/ParseIface.hc parser/Parser.hc main/ParsePkgConf.hc
endif
HS_OBJS
=
\
$(
patsubst
%.hc, %.o,
$(HCS)
)
\
parser/hschooks.o
DESTDIR
=
$(INSTALL_LIBRARY_DIR_GHC)
#
# Add misc .c helper code (used by the frontend.)
#
C_SRCS
+=
parser/hschooks.c
HS_OBJS
=
\
$(
patsubst
%.hc, %.o,
$(HCS)
)
\
$(
patsubst
%.c, %.o,
$(C_SRCS)
)
DESTDIR
=
$(INSTALL_LIBRARY_DIR_GHC)
#
# Big Fudge to get around inherent problem that Makefile setup
# has got with 'mkdependC'.
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment