Skip to content

Instantly share code, notes, and snippets.

@matovitch
matovitch / Makefile
Last active December 18, 2015 00:59 — forked from wolfiestyle/Makefile
# basic makefile for D language - made by darkstalker slightly modified by matovitch
DCC=dmd
DFLAGS= -w
LIBS=
SRC= $(wildcard *.d)
OBJ= $(SRC:.d=.o)
INT= $(SRC:.d=.di)
DOC= $(SRC:.d=.html)
OUT= $(shell basename `pwd`)