diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-12-19 19:23:32 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-12-19 19:23:32 +0000 |
| commit | a2e149d132ff949db2282c9ae0e1d65bd9c16a35 (patch) | |
| tree | ab9945b73918eb0b9c20cc6b0bd682bc23ea74a3 /fluid | |
| parent | da5a6c383b0ffce8b096dc92f8fdd3d3c30a1d3a (diff) | |
"make clean" should not delete makedepend, since we now track this
in CVS (makedepend contains local dependencies, not <stdio.h> and
so forth)...
The configure script didn't add -fpermissive or -fno-exceptions to
the CFLAGS and CXXFLAGS variables.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1880 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
| -rw-r--r-- | fluid/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fluid/Makefile b/fluid/Makefile index 174b46515..fe1b7b94e 100644 --- a/fluid/Makefile +++ b/fluid/Makefile @@ -1,5 +1,5 @@ # -# "$Id: Makefile,v 1.10.2.6.2.7 2001/12/14 19:34:29 easysw Exp $" +# "$Id: Makefile,v 1.10.2.6.2.8 2001/12/19 19:23:30 easysw Exp $" # # FLUID makefile for the Fast Light Tool Kit (FLTK). # @@ -47,6 +47,8 @@ CPPFILES = \ OBJECTS = $(CPPFILES:.cxx=.o) +CLEAN = core + include ../makeinclude $(PROGRAM) : $(OBJECTS) ../lib/$(LIBNAME) @@ -56,11 +58,9 @@ $(PROGRAM) : $(OBJECTS) ../lib/$(LIBNAME) $(POSTBUILD) $@ ../FL/mac.r clean : - -@ rm -f *.o $(PROGRAM) $(CLEAN) core *~ makedepend - @touch makedepend + -@ rm -f *.o $(PROGRAM) $(CLEAN) -depend: -# $(MAKEDEPEND) -I.. $(CXXFLAGS) $(CPPFILES) $(CFILES) > makedepend +depend: $(CPPFILES) makedepend -Y -I.. -f makedepend $(CPPFILES) include makedepend @@ -87,5 +87,5 @@ rebuild: ./fluid -c widget_panel.fl # -# End of "$Id: Makefile,v 1.10.2.6.2.7 2001/12/14 19:34:29 easysw Exp $". +# End of "$Id: Makefile,v 1.10.2.6.2.8 2001/12/19 19:23:30 easysw Exp $". # |
