mirror of
https://github.com/moparisthebest/curl
synced 2024-11-08 18:45:05 -05:00
22 lines
413 B
Makefile
22 lines
413 B
Makefile
|
#
|
||
|
# $Id$
|
||
|
#
|
||
|
|
||
|
INCLUDES = -I$(top_srcdir)/include
|
||
|
|
||
|
bin_PROGRAMS = app single double
|
||
|
|
||
|
app_SOURCES = app.c
|
||
|
app_LDADD = ../lib/libcurl.la
|
||
|
app_DEPENDENCIES = ../lib/libcurl.la
|
||
|
|
||
|
single_SOURCES = single.c
|
||
|
single_LDADD = ../lib/libcurl.la
|
||
|
single_DEPENDENCIES = ../lib/libcurl.la
|
||
|
|
||
|
double_SOURCES = double.c
|
||
|
double_LDADD = ../lib/libcurl.la
|
||
|
double_DEPENDENCIES = ../lib/libcurl.la
|
||
|
|
||
|
AUTOMAKE_OPTIONS = foreign no-dependencies
|