Skip to content

Commit

Permalink
missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
devill committed Mar 8, 2014
1 parent 366996b commit ce04602
Show file tree
Hide file tree
Showing 8 changed files with 1,413 additions and 11 deletions.
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

all: player

player: main.o player.o json.o
g++ main.o player.o json.o -o player

main.o:
g++ -c main.cpp

player.o:
g++ -c player.cpp

json.o:
g++ -c json.cpp

clean:
rm -rf *.o player
2 changes: 1 addition & 1 deletion config.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
url: http://localhost:9000/
url: http://localhost:9300/
Loading

0 comments on commit ce04602

Please sign in to comment.