introduction of os-specific.c and os-specific.h
[platform/upstream/curl.git] / src / Makefile.inc
1 # ./src/Makefile.inc
2  
3 # libcurl has sources that provide functions named curlx_* that aren't part of
4 # the official API, but we re-use the code here to avoid duplication.
5 CURLX_ONES =  $(top_srcdir)/lib/strtoofft.c \
6         $(top_srcdir)/lib/strdup.c \
7         $(top_srcdir)/lib/rawstr.c 
8
9 CURL_SOURCES = main.c hugehelp.c urlglob.c writeout.c writeenv.c \
10         getpass.c homedir.c curlutil.c os-specific.c
11
12 CURL_HFILES = hugehelp.h setup.h config-win32.h config-mac.h \
13         config-riscos.h urlglob.h version.h os-specific.h \
14         writeout.h writeenv.h getpass.h homedir.h curlutil.h
15
16 curl_SOURCES = $(CURL_SOURCES) $(CURLX_ONES) $(CURL_HFILES)
17
18