]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/dialog/samples/install/makefile.in
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / dialog / samples / install / makefile.in
1 # $Id: makefile.in,v 1.1 2000/10/08 17:22:53 tom Exp $
2 # template makefile for DIALOG sample 'install'
3 #
4 SHELL           = /bin/sh
5
6 prefix          = @prefix@
7 exec_prefix     = @exec_prefix@
8
9 srcdir          = @srcdir@
10 top_builddir    = ../..
11
12 DESTDIR         =
13 bindir          = $(DESTDIR)@bindir@
14
15 CFLAGS          = @CFLAGS@
16 CPPFLAGS        = @CPPFLAGS@ @DEFS@ -I$(top_builddir) -I$(srcdir)/../.. -I. -I$(srcdir)
17 EXTRA_CFLAGS    = @EXTRA_CFLAGS@
18 CC              = @CC@
19 LDFLAGS         = @LDFLAGS@
20 LIBS            = -L../.. -ldialog @LIBS@
21 RANLIB          = @RANLIB@
22
23 RM              = rm -f
24
25 all: setup
26
27 setup: setup.o
28         $(CC) -o $@ setup.o $(LIBS)
29
30 clean:
31         rm -f *.o setup
32
33 test: setup
34         ./setup
35