diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2005-04-16 00:01:49 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2005-04-16 00:01:49 +0000 |
| commit | b41cf28662fe5734530f280cc0dbb34bbf6aa25a (patch) | |
| tree | e6afdba0c544657c7a60198d5ed984feb5edf90c /src | |
| parent | 91c3b8231de57e381d33b154852092c04ab96f14 (diff) | |
Update "clean" targets to properly handle core files, remove backup files,
etc.
Add "install" target to test directory which installs the example programs.
Install the config.h file in the examples directory.
Make sure the example programs compile outside the FLTK source dir.
Add example programs to fltk.list.in.
Fix missing redraw() in x_cb() in FLUID...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4287 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/Makefile b/src/Makefile index c3ac99981..dd4930fec 100644 --- a/src/Makefile +++ b/src/Makefile @@ -178,8 +178,6 @@ IMGCPPFILES = \ CFILES = fl_call_main.c flstring.c scandir.c numericsort.c vsnprintf.c -CLEAN = core* cmap - ################################################################ include ../makeinclude @@ -339,15 +337,16 @@ libfltk_images_s.a: $(IMGOBJECTS) $(CHMOD) +x libfltk_images_s.a -clean : - -@ $(RM) *.o $(DSONAME) $(FLDSONAME) $(GLDSONAME) $(IMGDSONAME) \ +clean: + -$(RM) *.o core.* *~ *.bck *.bck + -$(RM) $(DSONAME) $(FLDSONAME) $(GLDSONAME) $(IMGDSONAME) \ ../lib/$(LIBNAME) ../lib/$(FLLIBNAME) ../lib/$(GLLIBNAME) \ ../lib/$(IMGLIBNAME) \ libfltk.so libfltk_forms.so libfltk_gl.so libfltk_images.so \ libfltk.sl libfltk_forms.sl libfltk_gl.sl libfltk_images.sl \ libfltk.dylib libfltk_forms.dylib \ libfltk_gl.dylib libfltk_images.dylib \ - $(CLEAN) + cmap core depend: $(CPPFILES) $(FLCPPFILES) $(GLCPPFILES) $(IMGCPPFILES) $(CFILES) makedepend -Y -I.. -f makedepend $(CPPFILES) $(FLCPPFILES) \ |
