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

r10462: cope better with compilers that don't put the object file in the same directory

as the source
This commit is contained in:
Andrew Tridgell 2005-09-24 03:28:10 +00:00 committed by Gerald (Jerry) Carter
parent 83168c7e76
commit 312491b251

View File

@ -17,6 +17,10 @@ TDB_OBJ = common/tdb.o common/dump.o common/io.o common/lock.o \
all: $(PROGS)
.c.o:
@echo Compiling $*.c
@$(CC) $(CFLAGS) -c $< -o $@
install: all
mkdir -p $(bindir)
mkdir -p $(includedir)