Rename a file that had a confusing filename.
authorJuho Vähä-Herttua <juhovh@iki.fi>
Tue, 13 Mar 2012 07:55:43 +0000 (09:55 +0200)
committerJuho Vähä-Herttua <juhovh@iki.fi>
Wed, 16 May 2012 21:33:31 +0000 (00:33 +0300)
Makefile
test/example.c [moved from test/shairport.c with 100% similarity]

index 5a0229831441daa8c8bdb2fd8c0f33999b901df4..e162dc84c1f66d0fd915916d4740306077ada579 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,10 +3,10 @@ LDFLAGS:=-lm
 LIB_OBJS=src/alac/alac.o src/crypto/aes.o src/crypto/bigint.o src/crypto/hmac.o src/crypto/md5.o src/crypto/rc4.o src/crypto/sha1.o src/sdp.o src/raop_buffer.o src/raop_rtp.o src/http_response.o src/http_request.o src/http_parser.o src/httpd.o src/raop.o src/rsakey.o src/rsapem.o src/dnssd.o src/netutils.o src/utils.o src/base64.o src/logger.o
 
 
-all: shairport
+all: example
 
-shairport: test/shairport.o $(LIB_OBJS)
-       $(CC) $(CFLAGS) test/shairport.o $(LIB_OBJS) -o $@ $(LDFLAGS)
+example: test/example.o $(LIB_OBJS)
+       $(CC) $(CFLAGS) test/example.o $(LIB_OBJS) -o $@ $(LDFLAGS)
 
 clean:
-       rm -f shairport test/*.o $(LIB_OBJS)
+       rm -f example test/*.o $(LIB_OBJS)
similarity index 100%
rename from test/shairport.c
rename to test/example.c