aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index 55de641..42fadf2 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -3,7 +3,7 @@ VERSION =0.1
PREFIX =@prefix@@PDLIBDIR@
-INSTALL_BIN=$(PREFIX)/extra
+INSTALL_BIN=$(PREFIX)/extra/$(LIBNAME)
EXT = @EXT@
DEFS = @DFLAGS@ -DVERSION=\"$(VERSION)\"
@@ -32,7 +32,7 @@ SOURCES=$(sort $(filter %.c, $(wildcard *.c)))
TARGETS = $(SOURCES:.c=.o)
-all: $(LIBNAME)
+all: $(LIBNAME).$(EXT)
clean:
-rm -f *.o *.d
@@ -63,9 +63,9 @@ distbin: distclean all clean
everything: clean all install distclean
-$(LIBNAME): $(TARGETS)
- $(LD) $(LFLAGS) -o $(LIBNAME).$(EXT) *.o $(LIBS)
- $(STRIP) $(LIBNAME).$(EXT)
+$(LIBNAME).$(EXT): $(TARGETS)
+ $(LD) $(LFLAGS) -o $@ $< $(LIBS)
+ $(STRIP) $@
## dependencies: as proposed by the GNU-make documentation