diff options
author | dos-reis <gdr@axiomatics.org> | 2010-11-27 21:28:37 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2010-11-27 21:28:37 +0000 |
commit | 31cd499e87188ec57621f12335d4db910facdc1b (patch) | |
tree | 711c088d7fd24bb8014396318c9ec3d7f6236d37 /src/graph/viewAlone | |
parent | d9d1578c937658aea790f713ec93a486a1a92478 (diff) | |
download | open-axiom-31cd499e87188ec57621f12335d4db910facdc1b.tar.gz |
* etc/Makefile.in: Compile and link with a C++ compiler.
* etc/asq.c.pamphlet: Fix bogus declarations of standard
functions. Fix const-correctness for string literals.
Diffstat (limited to 'src/graph/viewAlone')
-rw-r--r-- | src/graph/viewAlone/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/graph/viewAlone/Makefile.in b/src/graph/viewAlone/Makefile.in index dc8a333d..bc4611f5 100644 --- a/src/graph/viewAlone/Makefile.in +++ b/src/graph/viewAlone/Makefile.in @@ -68,14 +68,14 @@ stamp: $(axiom_target_bindir)/viewAlone$(EXEEXT) $(axiom_target_bindir)/viewAlone$(EXEEXT): $(viewAlone_objects) \ $(viewAlone_DEPENDENCIES) - $(LINK) -o $@ $(viewAlone_objects) $(viewAlone_LDADD) + $(CXXLINK) -o $@ $(viewAlone_objects) $(viewAlone_LDADD) .PRECIOUS: %.lo %.lo: $(HEADERS) %.lo: %.c $(axiom_c_macros_h) - $(COMPILE) -o $@ $(CFLAGS) $(AXIOM_CFLAGS) $< + $(CXXCOMPILE) -o $@ $(CFLAGS) $(AXIOM_CFLAGS) $< mostlyclean-local: |