source: roaraudio/roarclients/Makefile @ 1761:8d2dc52606be

Last change on this file since 1761:8d2dc52606be was 1755:f6fcc83859d0, checked in by phi, 15 years ago

added client network libs

File size: 1.9 KB
RevLine 
[1304]1TARGETS=roarcat roarcatad roarcat2sock roarcatsendfile roarcatplay roarcatpassfh roarbidir roarctl roarmon roarsockconnect roartypes roarvorbis roarvumeter roarfilt roarsin roar-config polytest roarsocktypes roarshout roarradio roarfctest roarmonhttp pinentrytest zcattest pgptest roarcatvio pipetest
[1619]2TOOLS=roarify
[0]3
[476]4include ../Makefile.conf
5
[554]6#DEFINES        = -DDEBUG
[1736]7INCLUDE    = -I../include -I./include
8CFLAGS    += -g -Wall -O2 $(DEFINES) $(INCLUDE) $(INCPATH)
9LDFLAGS    = -g -L../lib/ $(LDPATH) -lroar
[1755]10LIBS       = -lroar $(lib_wsock32) $(lib_ws2_32)
[1736]11DSPLIBS    = -lroardsp -lm $(LIBS)
12SHOUTLIBS  = $(lib_shout) $(LIBS)
13VORBISLIBS = $(lib_vorbisfile) $(lib_vorbis) $(lib_ogg) $(LIBS)
[0]14
[1619]15all: ${TARGETS} $(TOOLS)
16        cp $(cp_v) ${TARGETS} $(TOOLS) ../lib/
[0]17clean:
18        rm -f ${TARGETS} *.o
19new: clean all
20
21roarcat: roarcat.o
22roarcatad: roarcatad.o
[83]23roarcat2sock: roarcat2sock.o
[295]24roarcatsendfile: roarcatsendfile.o
[296]25roarcatplay: roarcatplay.o
[760]26roarcatpassfh: roarcatpassfh.o
[1279]27roarcatvio: roarcatvio.o
[800]28roarradio: roarradio.o
[0]29roarctl: roarctl.o
30roarmon: roarmon.o
[1016]31roarmonhttp: roarmonhttp.o
[826]32roarbidir: roarbidir.o
[126]33roarfilt: roarfilt.o
[1736]34        ${CC} ${LDFLAGS} -o roarfilt roarfilt.o $(DSPLIBS)
[294]35roarsin: roarsin.o
[1736]36        ${CC} ${LDFLAGS} -o roarsin roarsin.o $(DSPLIBS)
[297]37roarvumeter: roarvumeter.o
[1736]38        ${CC} ${LDFLAGS} -o roarvumeter roarvumeter.o $(DSPLIBS)
[4]39roarsockconnect: roarsockconnect.o
[47]40roartypes: roartypes.o
[510]41roarsocktypes: roarsocktypes.o
[293]42roar-config: roar-config.o
[111]43roarvorbis: roarvorbis.o
[1736]44        ${CC} ${LDFLAGS} -o roarvorbis roarvorbis.o $(VORBISLIBS)
[599]45roarshout: roarshout.o
[1736]46        ${CC} ${LDFLAGS} -o roarshout roarshout.o $(SHOUTLIBS)
[384]47polytest: polytest.o
[1736]48        ${CC} ${LDFLAGS} -o polytest polytest.o $(DSPLIBS)
[1236]49pinentrytest: pinentrytest.o
[1259]50zcattest: zcattest.o
[1270]51pgptest: pgptest.o
[1304]52pipetest: pipetest.o
[954]53roarfctest: roarfctest.o
[1736]54        ${CC} ${LDFLAGS} -o roarfctest roarfctest.o $(DSPLIBS)
[1619]55
56roarify.sht:
57roarify: roarify.sht
58        sed 's#%%%PREFIX_COMP%%%#$(PREFIX_COMP)#g' < roarify.sht > roarify
59        chmod +rx roarify
Note: See TracBrowser for help on using the repository browser.