mirror of
https://github.com/samba-team/samba.git
synced 2025-01-27 14:04:05 +03:00
504f8816e3
This commit will not compile on its own. metze
22 lines
396 B
Makefile
22 lines
396 B
Makefile
.SUFFIXES: .i _wrap.c
|
|
|
|
.i_wrap.c:
|
|
$(SWIG) -O -Wall -python -keyword $<
|
|
|
|
showflags::
|
|
@echo 'libevents 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) -c $< -o $@
|
|
|
|
distclean::
|
|
rm -f *~ */*~
|