Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mincss
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
mincss
Commits
666cf5ca
Commit
666cf5ca
authored
Jul 15, 2014
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dependency fix
parent
5c088307
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
9 deletions
+14
-9
Makefile
Makefile
+14
-9
No files found.
Makefile
View file @
666cf5ca
RESULT
:=
mincss
RESULT
:=
mincss
BASENAMES
:=
types stringify parser lexer util parse main
BASENAMES
:=
types stringify parser lexer util parse main
OFILES
:=
$(
addsuffix
.cmx,
$(BASENAMES)
)
OFILES
:=
$(
addsuffix
.cmx,
$(BASENAMES)
)
OCAMLCFLAGS
:=
-g
OCAMLCFLAGS
:=
-g
OCAMLLDFLAGS
:=
OCAMLLDFLAGS
:=
OCAMLLDLIBS
:=
str.cmxa
OCAMLLDLIBS
:=
str.cmxa
OCAMLLEX
:=
ocamllex
OCAMLYACC
:=
menhir
--infer
--explain
--dump
.PHONY
:
all clean
.PHONY
:
all clean
.PRECIOUS
:
$(addprefix .cmi
,
$(BASENAMES))
.PRECIOUS
:
$(addprefix .cmi
,
$(BASENAMES))
...
@@ -12,22 +15,24 @@ OCAMLLDLIBS := str.cmxa
...
@@ -12,22 +15,24 @@ OCAMLLDLIBS := str.cmxa
all
:
$(RESULT)
all
:
$(RESULT)
%.ml
:
%.mll
%.ml
:
%.mll
ocamllex
-o
$@
$<
$(OCAMLLEX)
-o
$@
$<
%.ml
:
%.mly
%.ml
:
%.mly
menhir
--infer
--explain
$<
$(OCAMLYACC)
$<
%.cmi
:
%.mli
%.cmi
:
%.mli
ocamlc
-c
$(OCAMLCFLAGS)
-o
$@
$<
ocamlc
-c
$(OCAMLCFLAGS)
-o
$@
$<
parser.cmx
:
parser.cmi
parser.mli
:
parser.ml
%.cmx
:
%.ml
%.cmx
:
%.ml
ocamlfind ocamlopt
-package
batteries
-c
$(OCAMLCFLAGS)
-o
$@
$
(
<:.cmi
=
.ml
)
ocamlfind ocamlopt
-package
batteries
-c
$(OCAMLCFLAGS)
-o
$@
$
(
<:.cmi
=
.ml
)
$(RESULT)
:
$(OFILES)
$(RESULT)
:
$(OFILES)
ocamlopt
-o
$@
$(OCAMLLDFLAGS)
$(OCAMLLDLIBS)
$^
ocamlopt
-o
$@
$(OCAMLLDFLAGS)
$(OCAMLLDLIBS)
$^
# intra-module dependencies
parser.cmx
:
parser.cmi
parser.mli
:
parser.ml
parse.cmx
:
lexer.cmi parser.cmi
clean
:
clean
:
rm
-f
*
.cmi
*
.cmx
*
.o lexer.ml parser.ml parser.mli
$(RESULT)
rm
-f
*
.cmi
*
.cmx
*
.o lexer.ml parser.ml parser.mli
$(RESULT)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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