prozilla/libprozilla/src/Makefile.am

33 lines
1.4 KiB
Makefile

#------------------------------------------------------------------------------
# Process this file with automake to produce Makefile.in.
#------------------------------------------------------------------------------
lib_LTLIBRARIES = libprozilla.la
libprozilla_la_SOURCES = connect.c connection.c debug.c download.c ftp-retr.c \
ftp.c ftpparse.c ftpsearch.c http-retr.c http.c \
logfile.c main.c misc.c netrc.c ping.c url.c
# 0:0:0
# 0 -> interface version, changes whenever you change the API
# 0 -> changes whenever you make a revision of an interface no
# API changes...
# 0 -> changes whenever you change the API but keep it backwards
# compatible (have not removed a function from the API, for
# example...)
libprozilla_la_LDFLAGS = -version-info 1:0:1
includedir= $(prefix)/include/prozilla
include_HEADERS = prozilla.h common.h netrc.h
AM_CPPFLAGS = @CPPFLAGS@ -DLOCALEDIR=\"$(datadir)/locale\"
INCLUDES = -I@includedir@
#AM_CPPFLAGS = -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
LIBS = @LIBS@ $(THREAD_LIBS)
AM_CFLAGS = @CFLAGS@ -D_REENTRANT -W -Wall -O2 -ggdb
#bin_PROGRAMS = testproz
#testproz_SOURCES = test.c
#testproz_LDADD = libprozilla.la
EXTRA_DIST = test.c connect.h connection.h debug.h download.h \
ftp-retr.h ftp.h ftpparse.h ftpsearch.h gettext.h \
http-retr.h http.h logfile.h misc.h ping.h url.h