mirror of
https://github.com/samba-team/samba.git
synced 2025-01-13 13:18:06 +03:00
5065cf70f8
This module didn't have any functionality that we actually used yet, and it was quite small. Tevent is quite low level and perhaps doesn't make much sense to expose directly as a Python module. It was also causing build problems when used with a system-tevent. We can always back later if necessary.
19 lines
345 B
Makefile
19 lines
345 B
Makefile
.SUFFIXES: .i _wrap.c
|
|
|
|
showflags::
|
|
@echo 'libtevent 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 *~ */*~
|