From cb3071ff0c57ebcc693ffc21474cfa326e772ccf Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Thu, 10 Jan 2019 22:53:33 -0500 Subject: Clean up cash Makefile --- bin/cash/.gitignore | 1 + bin/cash/Makefile | 59 +++++++++++++++++++++++++++-------------------------- 2 files changed, 31 insertions(+), 29 deletions(-) (limited to 'bin/cash') diff --git a/bin/cash/.gitignore b/bin/cash/.gitignore index dc34782b..674a2ed5 100644 --- a/bin/cash/.gitignore +++ b/bin/cash/.gitignore @@ -2,6 +2,7 @@ builtins.c builtins.h cash +config.mk mknodes mksyntax nodes.c diff --git a/bin/cash/Makefile b/bin/cash/Makefile index 30a3d22d..8d032dea 100644 --- a/bin/cash/Makefile +++ b/bin/cash/Makefile @@ -1,39 +1,40 @@ CFLAGS += -std=c99 -Wall -Wextra -DSHELL LDLIBS = -ledit -SHSRCS += alias.c -SHSRCS += arith_yacc.c -SHSRCS += arith_yylex.c -SHSRCS += cd.c -SHSRCS += echo.c -SHSRCS += error.c -SHSRCS += eval.c -SHSRCS += exec.c -SHSRCS += expand.c -SHSRCS += histedit.c -SHSRCS += input.c -SHSRCS += jobs.c -SHSRCS += kill.c -SHSRCS += mail.c -SHSRCS += main.c -SHSRCS += memalloc.c -SHSRCS += miscbltin.c -SHSRCS += mystring.c -SHSRCS += options.c -SHSRCS += output.c -SHSRCS += parser.c -SHSRCS += printf.c -SHSRCS += redir.c -SHSRCS += show.c -SHSRCS += test.c -SHSRCS += trap.c -SHSRCS += var.c +-include config.mk + +OBJS += alias.o +OBJS += arith_yacc.o +OBJS += arith_yylex.o +OBJS += cd.o +OBJS += echo.o +OBJS += error.o +OBJS += eval.o +OBJS += exec.o +OBJS += expand.o +OBJS += histedit.o +OBJS += input.o +OBJS += jobs.o +OBJS += kill.o +OBJS += mail.o +OBJS += main.o +OBJS += memalloc.o +OBJS += miscbltin.o +OBJS += mystring.o +OBJS += options.o +OBJS += output.o +OBJS += parser.o +OBJS += printf.o +OBJS += redir.o +OBJS += show.o +OBJS += test.o +OBJS += trap.o +OBJS += var.o GENSRCS = builtins.c nodes.c syntax.c GENHDRS = builtins.h nodes.h syntax.h token.h -SRCS = $(SHSRCS) $(GENSRCS) -OBJS = $(SRCS:.c=.o) +OBJS += $(GENSRCS:.c=.o) cash: $(OBJS) $(CC) $(LDFLAGS) $(OBJS) $(LDLIBS) -o $@ -- cgit 1.4.1 c407&follow=1'>root/bin/dash/src/bltin/echo.1 (unfollow)
Commit message (Expand)Author
2021-09-23Add quickJune McEnroe
2021-09-23Add The HobbitJune McEnroe
2021-09-22Remove PSF fontsJune McEnroe
2021-09-22Remove Linux-specific utilitiesJune McEnroe
2021-09-22Call sandbox in CGI modeJune McEnroe
2021-09-22Support HTTP PUT in upJune McEnroe
2021-09-22Remove default faviconJune McEnroe
2021-09-21Use Z_FILTERED strategyJune McEnroe
2021-09-21Recalculate various lengths only as neededJune McEnroe
2021-09-21Rewrite pngo, add explicit optionsJune McEnroe
2021-09-16Fix /* **/ comment matchingJune McEnroe
2021-09-15Remove typer, add downgrade to READMEJune McEnroe
2021-09-15Set bot mode on downgradeJune McEnroe
2021-09-15Enter capsicum in downgradeJune McEnroe
2021-09-15Factor out common parts of downgrade messagesJune McEnroe
2021-09-14Add downgrade IRC botJune McEnroe
2021-09-14Sort by title if authors matchJune McEnroe
2021-09-13Swap-remove tags as they're foundJune McEnroe
2021-09-12Replace htagml regex with strncmpJune McEnroe
2021-09-11Also defer printing comment for lone close-parensJune McEnroe
2021-09-10Publish "git-comment"June McEnroe
2021-09-10Add git comment --pretty optionJune McEnroe
2021-09-08Defer printing comment if line is blank or closing braceJune McEnroe
2021-09-08Up default min-repeat to 30 linesJune McEnroe
2021-09-08Handle dirty lines in git-commentJune McEnroe
2021-09-08Document and install git-commentJune McEnroe
2021-09-08Add repeat and all options to git-commentJune McEnroe
2021-09-08Add group threshold to git-commentJune McEnroe