~ubuntu-branches/debian/wheezy/libnjb/wheezy

« back to all changes in this revision

Viewing changes to sample/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Shaun Jackman
  • Date: 2004-05-25 13:06:10 UTC
  • Revision ID: james.westby@ubuntu.com-20040525130610-vexcucw1qxq1g4dp
Tags: upstream-1.1
ImportĀ upstreamĀ versionĀ 1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
prefix=@prefix@
 
2
exec_prefix=@prefix@
 
3
top_builddir=@top_builddir@
 
4
bindir=@bindir@
 
5
SHELL=@POSIXSHELL@
 
6
CC=@CC@
 
7
INSTALL=@INSTALL@
 
8
INSTALL_DATA=@INSTALL_DATA@
 
9
INSTALL_PROGRAM=@INSTALL_PROGRAM@
 
10
RM=rm -rf
 
11
LIBTOOL=@LIBTOOL@
 
12
 
 
13
CFLAGS=@CFLAGS@ @OSFLAGS@ -I../src -Wall
 
14
CPPFLAGS=@CPPFLAGS@
 
15
LDFLAGS=@LDFLAGS@
 
16
LDLIBS=@LIBS@
 
17
NJBLIB=../src/libnjb.la
 
18
 
 
19
SRCS=delfile.c deltr.c dumpeax.c files.c getfile.c gettr.c handshake.c \
 
20
        playlists.c pl.c play.c sendfile.c sendtr.c tagtr.c tracks.c \
 
21
        dumptime.c settime.c getowner.c getusage.c setpbm.c \
 
22
        setowner.c
 
23
LTCOMPILE = $(LIBTOOL) $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $(LDLIBS)
 
24
 
 
25
.SUFFIXES: .c
 
26
 
 
27
.c:
 
28
        $(LTCOMPILE) -o $@ $< $(NJBLIB)
 
29
 
 
30
# You can add cursesplay.c to the line above if you have the
 
31
# libraries for curses installed.
 
32
 
 
33
TARGETS=$(SRCS:.c=)
 
34
 
 
35
all: $(TARGETS)
 
36
 
 
37
install: all
 
38
        $(INSTALL) -d $(bindir)
 
39
        $(INSTALL_PROGRAM) $(TARGETS) $(bindir)
 
40
 
 
41
clean:
 
42
        $(RM) $(TARGETS) *.o
 
43
 
 
44
distclean: clean
 
45
        $(RM) Makefile
 
46
        $(RM) .libs
 
47
 
 
48
.PHONY: all install clean distclean
 
49