diff options
author | beber <beber> | 2006-01-12 02:53:35 +0000 |
---|---|---|
committer | beber <beber> | 2006-01-12 02:53:35 +0000 |
commit | ae70eb8b8f4e47a062422144bdb1549d03d5e149 (patch) | |
tree | 99506d85ab568bb844f0d9257175bc69cdd9862a /tst/Makefile | |
parent | comment and unused code (diff) | |
download | espik-ae70eb8b8f4e47a062422144bdb1549d03d5e149.tar.xz |
Missing files for git-import
Diffstat (limited to 'tst/Makefile')
-rw-r--r-- | tst/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tst/Makefile b/tst/Makefile new file mode 100644 index 0000000..a58221e --- /dev/null +++ b/tst/Makefile @@ -0,0 +1,27 @@ +SRC = upper.c +NAME = upper + +CFLAGS += -W -Wall -g +LDFLAGS += +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) *.swp + $(RM) $(OBJ) + $(RM) *.c~ *.h~ + +pdfclean: + $(RM) *.pdf + $(RM) *.ps + +fclean: clean pdfclean + $(RM) $(NAME) + +re: fclean $(NAME) clean |