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/Makefile | 59 ++++++++++++++++++++++++++++--------------------------- 1 file changed, 30 insertions(+), 29 deletions(-) (limited to 'bin/cash/Makefile') 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 value=''/>
path: root/bin/1sh/show.c (unfollow)
Commit message (Expand)Author
2019-06-29Clean up 1sh prompt settingJune McEnroe
2019-06-29Add Parable of the TalentsJune McEnroe
2019-06-28Rename catsh to 1shJune McEnroe
2019-06-28Set HISTSIZE in catshJune McEnroe
2019-06-28Unset iflag when exiting catshJune McEnroe
2019-06-24Consolidate catsh history documentationJune McEnroe
2019-06-19Set LESS=FRXJune McEnroe
2019-06-16Alias date=ddateJune McEnroe
2019-06-15Set sensitivity by slot in TF2June McEnroe
2019-06-15Add AcceptanceJune McEnroe
2019-06-07Add variables to bitJune McEnroe
2019-06-05Add A Closed and Common OrbitJune McEnroe
2019-06-02Add RebornJune McEnroe
2019-05-30Add bit to bin.7June McEnroe
2019-05-30Simplify and build bitJune McEnroe
2019-05-29Add xx -p optionJune McEnroe
2019-05-27Add FrontierJune McEnroe
2019-05-27Break nicks with ZWNJJune McEnroe
2019-05-26Add DawnJune McEnroe
2019-05-20Declare vasprintf(3) for GNUJune McEnroe
2019-05-20Fix comparison warning in ttpreJune McEnroe
2019-05-20Add AuthorityJune McEnroe
2019-05-19Specify precedence of unary versions of operatorsJune McEnroe
2019-05-18Add compound assignment operators to orderJune McEnroe
2019-05-15Support simple assignment in orderJune McEnroe
2019-05-15Implement sizeof in orderJune McEnroe
2019-05-15Add orderJune McEnroe
2019-05-12Add T suffix in bitJune McEnroe
2019-05-10Highlight yacc and lex files as CJune McEnroe
2019-05-10Use val instead of suboptargJune McEnroe
2019-05-09Add Parable of the SowerJune McEnroe
2019-05-07Add bit without buildJune McEnroe
2019-05-04Fix MANDIR typoJune McEnroe
2019-05-04Move relay to binJune McEnroe