aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBertrand Jacquin (Beber) <beber@setibzh.com>2006-01-24 15:42:19 +0100
committerBertrand Jacquin (Beber) <beber@setibzh.com>2006-01-24 15:42:19 +0100
commitb6e10bb35e3679784b8055cb898dc6538f4289fe (patch)
treeb7c36de7e3aca2b89406d23bcdb5cfee9ec994d6
parentAvoid memleak (diff)
downloadespik-b6e10bb35e3679784b8055cb898dc6538f4289fe.tar.xz
Del Old static Makefile unautofooed
-rw-r--r--old/Makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/old/Makefile b/old/Makefile
deleted file mode 100644
index ac75b80..0000000
--- a/old/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-SRC = ../src/espik.c ../src/espik_irc.c ../src/espik_config.c ../src/error.c ../src/espik_common_handler.c ../src/espik_net.c
-NAME = espik
-
-CFLAGS += -W -Wall -g
-LDFLAGS += -lecore -lecore_config -lecore_con
-OBJ = $(SRC:c=o)
-RM = rm -f
-CC = gcc
-
-$(NAME): $(OBJ)
- $(CC) -o $(NAME) $(CFLAGS) $(LDFLAGS) $(OBJ)
- chmod u+x $(NAME)
- cp $(NAME) ~/bin
-
-clean:
- $(RM) ../src/*.swp
- $(RM) $(OBJ)
- $(RM) ../src/*.c~ ../src/*.h~
-
-fclean: clean
- $(RM) $(NAME)
-
-re: fclean $(NAME) clean