Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cool
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Hans-Peter Deifel
cool
Commits
07c53791
Commit
07c53791
authored
11 years ago
by
Thorsten Wißmann
Browse files
Options
Downloads
Patches
Plain Diff
Fixup GMLMIP makefiles
parent
7a96ea0b
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
GMLMIP-0.1/makefile
+19
-2
19 additions, 2 deletions
GMLMIP-0.1/makefile
Makefile
+6
-1
6 additions, 1 deletion
Makefile
with
25 additions
and
3 deletions
GMLMIP-0.1/makefile
+
19
−
2
View file @
07c53791
...
...
@@ -4,12 +4,29 @@ GCCFLAGS = -Wall -Wno-deprecated
POBJS
=
./parser/lex.yy.o ./parser/mlf-parser.tab.o ./parser/mlf-driver.o
FOBJS
=
./formulas/formula.o ./formulas/GML_formula.o ./formulas/PML_formula.o ./formulas/rational.o ./formulas/satisfyingassignment.o
ROBJS
=
./rules/premise.o ./rules/GML_premise.o ./rules/PML_premise.o ./rules/valuation.o ./rules/setofconclusions.o ./rules/sizefunctions.o ./rules/radixtree.o
SUBDIRS
=
parser formulas rules
.PHONY
:
all clean parser formulas rules
all
:
main
parser
:
make
-C
parser
formulas
:
make
-C
formulas
rules
:
make
-C
rules
main
:
main.o $(POBJS) $(FOBJS) $(ROBJS)
$(
GCC
)
$(
GCCFLAGS
)
$(
POBJS
)
$(
FOBJS
)
$(
ROBJS
)
-lbdd
-lm
-lglpk
main.o
-o
main
main.o
:
main.cpp ./parser/mlf-driver.h ./formulas/formula.h ./formulas/satisfyingassignment.h
main.o
:
main.cpp ./parser/mlf-driver.h ./formulas/formula.h ./formulas/satisfyingassignment.h
$(SUBDIRS)
$(
GCC
)
$(
GCCFLAGS
)
-c
main.cpp
clean
:
rm
-rf
*
~
*
.o main
rm
-rf
*
.o main
make
-C
parser clean
make
-C
formulas clean
make
-C
rules clean
This diff is collapsed.
Click to expand it.
Makefile
+
6
−
1
View file @
07c53791
...
...
@@ -55,7 +55,11 @@ LIBSMLI := $(patsubst %.mli,%.cmi,$(SOURCESMLI))
LIBSML
:=
$(
patsubst %.ml,%
$(
SUFFIX
)
,
$(
SOURCESML
))
.PHONY
:
all
all
:
$(PROGS)
all
:
$(PROGS) gmlmip
.PHONY
:
gmlmip
gmlmip
:
make
-C
GMLMIP-0.1
minisat.cma
:
minisat.cmo minisat_stub.o
$(
OCAMLC
)
-a
-o
minisat.cma minisat.cmo minisat_stub.o
-custom
-cclib
-lminisat
...
...
@@ -102,6 +106,7 @@ clean:
$(
RM
)
-f
.depend
$(
RM
)
-f
$(
PROGS
)
$(
RM
)
-f
*
.a
make
-C
GMLMIP-0.1 clean
.PHONY
:
depend
depend
:
.depend
...
...
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