From f827b306c43dce36cfd1fed852ed6934b6cc7469 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sat, 2 Feb 2013 00:12:43 -0500 Subject: [PATCH] create initial files --- .gitignore | 1 + Makefile | 7 +++++++ sdl_opengl_bare.d | 7 +++++++ 3 files changed, 15 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 sdl_opengl_bare.d diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c02cd0c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +sdl_opengl_bare diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c344e2d --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ + +TARGET := sdl_opengl_bare + +all: $(TARGET) + +$(TARGET): $(TARGET).d + gdc -o $@ $^ diff --git a/sdl_opengl_bare.d b/sdl_opengl_bare.d new file mode 100644 index 0000000..862b7cf --- /dev/null +++ b/sdl_opengl_bare.d @@ -0,0 +1,7 @@ +import std.stdio; + +int main(char[][] args) +{ + writefln("Hi!"); + return 0; +}