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/view3D | |
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/view3D')
-rw-r--r-- | src/graph/view3D/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/graph/view3D/Makefile.in b/src/graph/view3D/Makefile.in index 93321339..9111bee7 100644 --- a/src/graph/view3D/Makefile.in +++ b/src/graph/view3D/Makefile.in @@ -80,7 +80,7 @@ stamp: $(axiom_target_libdir)/view3D$(EXEEXT) $(STAMP) stamp $(axiom_target_libdir)/view3D$(EXEEXT): $(view3D_objects) $(view3D_DEPENDENCIES) - $(LINK) -o $@ $(view3D_objects) $(Gfun_objects) \ + $(CXXLINK) -o $@ $(view3D_objects) $(Gfun_objects) \ $(view3D_LDADD) $(AXIOM_X11_LDFLAGS) -lm .PRECIOUS: %.lo @@ -88,7 +88,7 @@ $(axiom_target_libdir)/view3D$(EXEEXT): $(view3D_objects) $(view3D_DEPENDENCIES) %.lo: $(HEADERS) %.lo: %.c - $(COMPILE) -o $@ $(CFLAGS) $(AXIOM_CFLAGS) $< + $(CXXCOMPILE) -o $@ $(CFLAGS) $(AXIOM_CFLAGS) $< mostly-clean: |