diff options
| author | Ralph Amissah <ralph@amissah.com> | 2015-10-20 21:55:11 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2015-10-20 23:10:37 -0400 | 
| commit | 4c6c9216390f7dee4552846ee17f2bcb3402b43c (patch) | |
| tree | 15750b24ed5cda482908fad4cfad73f7477423a2 /makefile | |
| parent | literate programming introduced, tangle not yet run (diff) | |
.d files made, emacs org babel tangle run on .org files
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 5 | 
1 files changed, 5 insertions, 0 deletions
| @@ -4,12 +4,14 @@ DMD_FLAGS=-de -w  DMD_FLAGS_DEBUG=-unittest -debug=checkdoc -debug=summary  DMD_FLAGS_RELEASE=-release  DMD_FLAG_BINOF=-of +  #LDC=ldc2  LDC=ldc2  LDC_FLAGS=-w  LDC_FLAGS_DEBUG=-unittest -d-debug=checkdoc -d-debug=summary  LDC_FLAGS_RELEASE=-release  LDC_FLAG_BINOF=-of= +  #GDC=gdc  GDC=gdc  #GDC=gdc-5 @@ -17,6 +19,7 @@ GDC_FLAGS=  GDC_FLAGS_DEBUG=-fdebug=checkdoc -fdebug=summary  GDC_FLAGS_RELEASE=-frelease  GDC_FLAG_BINOF=-o +  ## D_COMPILER=DMD  ## D_COMPILER=LDC  ## D_COMPILER=GDC @@ -26,11 +29,13 @@ DC_FLAGS=$($(shell echo $(D_COMPILER)_FLAGS))  DC_FLAGS_DEBUG=$($(shell echo $(D_COMPILER)_FLAGS_DEBUG))  DC_FLAGS_RELEASE=$($(shell echo $(D_COMPILER)_FLAGS_RELEASE))  DC_FLAG_BINOF=$($(shell echo $(D_COMPILER)_FLAG_BINOF)) +  PRG_NAME=sdp  PRG_SRC=$(PRG_NAME).d  PRG_SRCDIR=./lib/$(PRG_NAME)  PRG_BIN=$(PRG_NAME)  PRG_BINDIR=bin +  # ORG  EMACSLISP=/usr/share/emacs/site-lisp  EMACSLISP_ORG=~/.emacs.d/elpa/org-20151005 | 
