1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- AUTOMAKE_OPTIONS = foreign nostdinc
- if USE_EMBEDDED_ARES
- AM_CPPFLAGS = -I$(top_srcdir)/include \
- -I$(top_builddir)/lib \
- -I$(top_srcdir)/lib \
- -I$(top_builddir)/ares \
- -I$(top_srcdir)/ares
- else
- AM_CPPFLAGS = -I$(top_srcdir)/include \
- -I$(top_builddir)/lib \
- -I$(top_srcdir)/lib
- endif
- LIBS = $(BLANK_AT_MAKETIME)
- if DOING_NATIVE_WINDOWS
- AM_CPPFLAGS += -DCURL_STATICLIB
- endif
- include Makefile.inc
- EXTRA_DIST = base64.pl Makefile.inc CMakeLists.txt
- checksrc:
- @PERL@ $(top_srcdir)/lib/checksrc.pl $(srcdir)/*.c
- if CURLDEBUG
- all-local: checksrc
- endif
|