Recompile all targets if necessary.

merge-requests/1/head
Henning Geinitz 2003-04-02 22:05:26 +00:00
rodzic 5eba8d93a2
commit e82f413b74
2 zmienionych plików z 9 dodań i 5 usunięć

Wyświetl plik

@ -1,3 +1,7 @@
2003-04-03 Henning Meier-Geinitz <henning@meier-geinitz.de>
* lib/Makefile.in: Recompile all targets if necessary.
2003-04-03 Eddy De Greef <eddy_de_greef at tiscali dot be>
* backend/mustek_pp.c: Fixed a potential crash bug that could be

Wyświetl plik

@ -48,12 +48,10 @@ DISTCLEAN_FILES = @DISTCLEAN_FILES@
@SET_MAKE@
LIBLIB_OBJS = @LIBOBJS@ @ALLOCA@ getopt.o getopt1.o md5.o
LIBLIB_LTOBJS = $(addsuffix .lo,$(basename $(LIBLIB_OBJS)))
TARGETS = $(LIBLIB_OBJS)
TARGETS = liblib.a
TARGETS = liblib.a $(LIBLIB_LTOBJS)
DISTFILES = Makefile.in alloca.c getenv.c getopt.c getopt1.c \
inet_ntop.c inet_pton.c isfdtype.c md5.c sigprocmask.c snprintf.c strdup.c \
@ -62,10 +60,12 @@ DISTFILES = Makefile.in alloca.c getenv.c getopt.c getopt1.c \
.PHONY: all check clean depend dist distclean install uninstall
.SUFFIXES:
.SUFFIXES: .c .o
.SUFFIXES: .c .o .lo
.c.o:
$(COMPILE) $<
.c.lo:
@$(LIBTOOL) $(MCOMP) $(COMPILE) $<
@test -f $@ || $(COMPILE) $<
all: $(TARGETS)