File: Makefile.in

package info (click to toggle)
libnjb1 1.1-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,400 kB
  • ctags: 594
  • sloc: ansic: 10,288; sh: 6,541; makefile: 175
file content (49 lines) | stat: -rw-r--r-- 993 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
prefix=@prefix@
exec_prefix=@prefix@
top_builddir=@top_builddir@
bindir=@bindir@
SHELL=@POSIXSHELL@
CC=@CC@
INSTALL=@INSTALL@
INSTALL_DATA=@INSTALL_DATA@
INSTALL_PROGRAM=@INSTALL_PROGRAM@
RM=rm -rf
LIBTOOL=@LIBTOOL@

CFLAGS=@CFLAGS@ @OSFLAGS@ -I../src -Wall
CPPFLAGS=@CPPFLAGS@
LDFLAGS=@LDFLAGS@
LDLIBS=@LIBS@
NJBLIB=../src/libnjb.la

SRCS=delfile.c deltr.c dumpeax.c files.c getfile.c gettr.c handshake.c \
	playlists.c pl.c play.c sendfile.c sendtr.c tagtr.c tracks.c \
	dumptime.c settime.c getowner.c getusage.c setpbm.c \
	setowner.c
LTCOMPILE = $(LIBTOOL) $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $(LDLIBS)

.SUFFIXES: .c

.c:
	$(LTCOMPILE) -o $@ $< $(NJBLIB)

# You can add cursesplay.c to the line above if you have the
# libraries for curses installed.

TARGETS=$(SRCS:.c=)

all: $(TARGETS)

install: all
	$(INSTALL) -d $(bindir)
	$(INSTALL_PROGRAM) $(TARGETS) $(bindir)

clean:
	$(RM) $(TARGETS) *.o

distclean: clean
	$(RM) Makefile
	$(RM) .libs

.PHONY: all install clean distclean