From 812538528a8463874694180aca31aecf0ab12e39 Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Sun, 21 Sep 2008 19:50:09 -0700 Subject: [PATCH] Rename cisco.c to main.c, and output program to anyconnect --- Makefile | 6 +++--- cisco.c => main.c | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename cisco.c => main.c (100%) diff --git a/Makefile b/Makefile index 4a053f0..a7018f1 100644 --- a/Makefile +++ b/Makefile @@ -8,16 +8,16 @@ endif CFLAGS += -I/usr/include/openssl #-I/usr/include/libxml2 LDFLAGS += -lssl -OBJECTS := cisco.o tun.o dtls.o ssl.o +OBJECTS := main.o tun.o dtls.o ssl.o -cisco: $(OBJECTS) +anyconnect: $(OBJECTS) $(CC) -o $@ $(LDFLAGS) $^ %.o: %.c $(CC) -c -o $@ $(CFLAGS) $< -MD -MF .$@.dep clean: - rm -f $(OBJECTS) cisco $(wildcard .*.o.dep) + rm -f $(OBJECTS) anyconnect $(wildcard .*.o.dep) include /dev/null $(wildcard .*.o.dep) diff --git a/cisco.c b/main.c similarity index 100% rename from cisco.c rename to main.c -- 2.7.4