Skip to content

Commit

Permalink
Basic linux build system
Browse files Browse the repository at this point in the history
  • Loading branch information
NickMcConnell committed Aug 28, 2013
1 parent 394eed6 commit 49fbce6
Show file tree
Hide file tree
Showing 35 changed files with 5,924 additions and 2 deletions.
13 changes: 12 additions & 1 deletion .gitignore
Expand Up @@ -237,4 +237,15 @@ pip-log.txt
*.raw

# Save files
lib/save
!lib/save/Makefile
lib/save/*

# Linux build system
.deps
src/autoconf.h
aclocal.m4
autom4te.cache/
config.log
config.status
configure
mk/buildsys.mk
10 changes: 10 additions & 0 deletions Makefile
@@ -0,0 +1,10 @@
MKPATH=mk/
include $(MKPATH)buildsys.mk

SUBDIRS = src lib
CLEAN = config.status config.log *.dll *.exe

.PHONY: dist
TAG = poschengband-`git describe`
OUT = $(TAG).tar.gz

0 comments on commit 49fbce6

Please sign in to comment.