From 2eb30d4ac631999499b1aad3c55fe9b82b569524 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Juho=20V=C3=A4h=C3=A4-Herttua?= Date: Tue, 13 Mar 2012 09:55:43 +0200 Subject: [PATCH] Rename a file that had a confusing filename. --- Makefile | 8 ++++---- test/{shairport.c => example.c} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename test/{shairport.c => example.c} (100%) diff --git a/Makefile b/Makefile index 5a02298..e162dc8 100644 --- 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) diff --git a/test/shairport.c b/test/example.c similarity index 100% rename from test/shairport.c rename to test/example.c -- 2.34.1