From 963f225ab544c8383494034226f1586b42832759 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Thu, 25 Mar 1999 22:15:53 +0000 Subject: Changed hard references to libfltk.a and friends to $(LIBRARY) and $(DSONAME)... git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@466 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Makefile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src') diff --git a/src/Makefile b/src/Makefile index 3a86dc97e..751016b1c 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,5 +1,5 @@ # -# "$Id: Makefile,v 1.18.2.3 1999/03/25 16:09:54 mike Exp $" +# "$Id: Makefile,v 1.18.2.4 1999/03/25 22:15:53 mike Exp $" # # Library makefile for the Fast Light Tool Kit (FLTK). # @@ -152,14 +152,14 @@ OBJECTS = $(CPPFILES:.cxx=.o) $(CFILES:.c=.o) all: $(LIBRARY) $(DSONAME) -../lib/libfltk.a: $(OBJECTS) - @echo $(LIBCOMMAND) ../lib/libfltk.a ... - @$(LIBCOMMAND) ../lib/libfltk.a $(OBJECTS) - @$(RANLIB) ../lib/libfltk.a +$(LIBRARY): $(OBJECTS) + @echo $(LIBCOMMAND) $@ ... + @$(LIBCOMMAND) $@ $(OBJECTS) + @$(RANLIB) $@ -libfltk.sl.1 libfltk.so.1: $(OBJECTS) - @echo $(DSOCOMMAND) $(DSONAME) ... - @$(DSOCOMMAND) $(DSONAME) $(OBJECTS) +$(DSONAME): $(OBJECTS) + @echo $(DSOCOMMAND) $@ ... + @$(DSOCOMMAND) $@ $(OBJECTS) .SUFFIXES: .cxx .h .o @@ -209,5 +209,5 @@ install: ../lib/$(LIBNAME) $(DSONAME) @-ln -s FL $(includedir)/Fl # -# End of "$Id: Makefile,v 1.18.2.3 1999/03/25 16:09:54 mike Exp $". +# End of "$Id: Makefile,v 1.18.2.4 1999/03/25 22:15:53 mike Exp $". # -- cgit v1.2.3