Skip to content

Commit

Permalink
Got everything setup, the re-write begins
Browse files Browse the repository at this point in the history
  • Loading branch information
mtwilliams committed May 1, 2011
0 parents commit fc2dfcf
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 0 deletions.
2 changes: 2 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
All rights reserved, for now.

Empty file added LICENSE.md~
Empty file.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
TODO: Write about the brief history of this project and about the idea. Also,
talk about the project's aims and contributors.

Empty file added README.md~
Empty file.
8 changes: 8 additions & 0 deletions main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include <SFML/System.hpp>
#include <iostream>

int main(int argc, char** argv)
{
return 0;
}

20 changes: 20 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# This needs to be done much better
# Use: **/*.o for any depth using GNUMake 3.81+
OBJS = *.o #*/*.o
CC = g++
DEBUG = -g
CFLAGS = -Wall -c $(DEBUG) -Iincludes
LFLAGS = -Wall -lsfml-graphics -lsfml-window -lsfml-system $(DEBUG)
PNAME = game

all: build

build: $(OBJS)
$(CC) $(LFLAGS) $(OBJS) -o $(PNAME)

clean:
\rm *.o *~ $(PNAME)

.cpp:
$(CC) $(CFLAGS) -c $(.SOURCE)

0 comments on commit fc2dfcf

Please sign in to comment.