mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
ecbe5ebd8d
We no longer use swig for pytdb, so there is no need for swig make rules. Also pytdb.c header should be updated. Signed-off-by: Kirill Smelkov <kirr@mns.spb.ru> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
17 lines
329 B
Makefile
17 lines
329 B
Makefile
showflags::
|
|
@echo 'tdb will be compiled with flags:'
|
|
@echo ' CFLAGS = $(CFLAGS)'
|
|
@echo ' CPPFLAGS = $(CPPFLAGS)'
|
|
@echo ' LDFLAGS = $(LDFLAGS)'
|
|
@echo ' LIBS = $(LIBS)'
|
|
|
|
.SUFFIXES: .c .o
|
|
|
|
.c.o:
|
|
@echo Compiling $*.c
|
|
@mkdir -p `dirname $@`
|
|
@$(CC) $(PICFLAG) $(CFLAGS) $(ABI_CHECK) -c $< -o $@
|
|
|
|
distclean::
|
|
rm -f *~ */*~
|