File: Makefile.am

package info (click to toggle)
cpluff 0.2.0%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,992 kB
  • sloc: ansic: 9,055; sh: 4,734; cpp: 731; makefile: 382; xml: 244; sed: 16
file content (16 lines) | stat: -rw-r--r-- 460 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
## Process this file with automake to produce Makefile.in.

# Copyright 2007 Johannes Lehtinen
# This Makefile is free software; Johannes Lehtinen gives unlimited
# permission to copy, distribute and modify it.

LIBS = @LIB_READLINE@ @LIBS_OTHER@ @LTLIBINTL@ @LIBS@

bin_PROGRAMS = cpluff-console

cpluff_console_SOURCES = console.c console.h
if HAVE_READLINE
cpluff_console_SOURCES += cmdinput_readline.c
else
cpluff_console_SOURCES += cmdinput_basic.c
endif