Makefile (schily-2021-08-14.tar.bz2) | : | Makefile (schily-2021-09-18.tar.bz2) | ||
---|---|---|---|---|
#ident @(#)Makefile 1.27 10/05/13 | #ident @(#)Makefile 1.28 21/08/20 | |||
########################################################################### | ########################################################################### | |||
SRCROOT= .. | SRCROOT= .. | |||
RULESDIR= RULES | RULESDIR= RULES | |||
include $(SRCROOT)/$(RULESDIR)/rules.top | include $(SRCROOT)/$(RULESDIR)/rules.top | |||
########################################################################### | ########################################################################### | |||
INSDIR= bin | INSDIR= bin | |||
TARGET= bsh | TARGET= bsh | |||
SYMLINKS= pfbsh | SYMLINKS= pfbsh | |||
CPPOPTS += -DBSH # Tell the code that we compile for bsh | CPPOPTS += -DBSH # Tell the code that we compile for bsh | |||
skipping to change at line 29 | skipping to change at line 29 | |||
CPPOPTS += -DFAST_MALLOC # malloc() without freechecking | CPPOPTS += -DFAST_MALLOC # malloc() without freechecking | |||
# and without bound checks | # and without bound checks | |||
#CPPOPTS += -DD_MALLOC # add support for dbg_malloc() | #CPPOPTS += -DD_MALLOC # add support for dbg_malloc() | |||
#CPPOPTS += -DNO_USER_MALLOC # Do not use our own malloc() | #CPPOPTS += -DNO_USER_MALLOC # Do not use our own malloc() | |||
CPPOPTS += -DTESTMAIL # Do mail file checking | CPPOPTS += -DTESTMAIL # Do mail file checking | |||
CPPOPTS += -DSCHILY_PRINT # Use js_*() versions of *print*() funcs | CPPOPTS += -DSCHILY_PRINT # Use js_*() versions of *print*() funcs | |||
CPPOPTS += -DDO_FIND # Include find(1) builtin | CPPOPTS += -DDO_FIND # Include find(1) builtin | |||
#CPPOPTS += -DNO_LOCALE # Don't use setlocale() | #CPPOPTS += -DNO_LOCALE # Don't use setlocale() | |||
#CPPOPTS += -DNO_WCHAR # Don't use wide chars | #CPPOPTS += -DNO_WCHAR # Don't use wide chars | |||
CPPOPTS += -DUSE_NLS # Include locale support | ||||
CPPOPTS += -DINS_BASE=\"${INS_BASE}\" | ||||
CPPOPTS += -DINS_RBASE=\"${INS_RBASE}\" | ||||
CPPOPTS += -DTEXT_DOMAIN=\"SCHILY_utils\" | ||||
# | # | |||
# Additional defines: | # Additional defines: | |||
# | # | |||
# -DFAST_MALLOC a malloc() without freechecking and without a check | # -DFAST_MALLOC a malloc() without freechecking and without a check | |||
# for overrun size bounds. | # for overrun size bounds. | |||
# -DNO_USER_MALLOC Do not use our own (user defined) malloc() | # -DNO_USER_MALLOC Do not use our own (user defined) malloc() | |||
CFILES= bsh.c node.c parse.c hashcmd.c alias.c abbtab.c \ | CFILES= bsh.c node.c parse.c hashcmd.c alias.c abbtab.c \ | |||
exec.c sys.c proc.c \ | exec.c sys.c proc.c \ | |||
builtin.c btab.c ctype.c signames.c \ | builtin.c btab.c ctype.c signames.c \ | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 6 lines changed or added |