blob: 262f87d614eac176d9a219b4f6138269f26171fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
--- MELT-Plugin-Makefile 2013-01-01 20:19:48.000000000 -0500
+++ MELT-Plugin-Makefile 2013-01-01 20:23:08.000000000 -0500
@@ -84,12 +84,12 @@
MELTLIBS_INCLUDEFLAGS ?=
## the gengtype for that GCC and its flag
-MELTGCC_GENGTYPE := $(shell $(MELTGCC) -print-file-name=gengtype)
+MELTGCC_GENGTYPE := $(shell $(MELTGCC) -print-prog-name=plugin/gengtype)
MELTGCC_GENGTYPEFLAGS = -v
## its state file
-MELTGCC_GTYPESTATE := $(shell $(MELTGCC) -print-file-name=gtype.state)
+MELTGCC_GTYPESTATE := $(shell $(MELTGCC) -print-file-name=plugin/gtype.state)
## MELT plugin extra libraries and flags for melt.so
MELTGCC_LIBES =
@@ -223,7 +223,7 @@
GCCMELT_STAGE_ZERO = meltbuild-stage0-quicklybuilt
-all: melt-run.h melt.so melt-applications melt-gendoc doc
+all: melt-run.h melt.so melt-applications
@echo
@echo '+++++++++++++++++++'
@echo -n MELT plugin compilation completed at ; date
@@ -467,9 +467,9 @@
################# installation
-install: all melt-gendoc \
+install: all \
install-melt-includes install-melt-sources install-melt-modules \
- install-melt-mk install-melt-so install-melt-doc
+ install-melt-mk install-melt-so
install-melt-includes: melt-runtime.h melt-predef.h melt-run.h melt-run-md5.h melt/generated/meltrunsup.h
@echo installing MELT include directory $(melt_header_dir)
|