1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

r22046: Rever r22040, which breaks the build on FreeBSD 5.4 (BSD make).

This commit is contained in:
James Peach 2007-04-02 20:19:00 +00:00 committed by Gerald (Jerry) Carter
parent 902a76ca70
commit 5a96812929

View File

@ -377,27 +377,23 @@ include/includes.d: include/includes.h
# if it also exists. So better use $* which is foo/bar
# and append .c manually to get foo/bar.c
#
# But if srcdir != builddir, $* does not contain the filename
# that was found be traversing VPATH. So we are back to $<.
# -- jpeach
#
# Run a static analysis checker
CHECK = $(CC_CHECKER) `$(PERL) $(srcdir)/script/cflags.pl $@` \
$(CFLAGS) $(PICFLAG) -c $< -o $@
$(CFLAGS) $(PICFLAG) -c $*.c -o $@
# Run the configured compiler
COMPILE = $(CC) `$(PERL) $(srcdir)/script/cflags.pl $@` \
$(CFLAGS) $(PICFLAG) -c $< -o $@
$(CFLAGS) $(PICFLAG) -c $*.c -o $@
# Run the compiler for the build host
HCOMPILE = $(HOSTCC) `$(PERL) $(srcdir)/script/cflags.pl $@` \
$(HOSTCC_CFLAGS) -c $< -o $@
$(HOSTCC_CFLAGS) -c $*.c -o $@
# Precompile headers
PCHCOMPILE = @$(CC) -Ilib/replace \
`$(PERL) $(srcdir)/script/cflags.pl $@` \
$(CFLAGS) $(PICFLAG) -c $< -o $@
$(CFLAGS) $(PICFLAG) -c $*.c -o $@
.c.o:
@if test -n "$(CC_CHECKER)"; then \