/+junk/invaders_vala

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/invaders_vala

« back to all changes in this revision

Viewing changes to lib/Makefile

  • Committer: Gusatv Hartvigsson
  • Date: 2012-01-02 15:07:52 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20120102150752-jrxhb820jds5r1q5
* Started to work on a helper library (Under LGPL)
  GameHelper namespace
* Added a README
* Added a Readmed for the new HelperLibrary...

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
################################################################################
 
2
FLAGS=--pkg sdl\
 
3
      --pkg gee-1.0
 
4
BINARY=bin/invaders
 
5
VALAC=valac
 
6
################################################################################
 
7
all: GameHelper.so
 
8
        
 
9
 
 
10
GameHelper.so: GameHelper/GameHelper.vala
 
11
        $(VALAC) $(FLAGS) --library=GameHelper -H GameHelper.h -X -fPIC -X -shared\
 
12
  -o GameHelper.so GameHelper/GameHelper.vala
 
13
  
 
14
.PHONY: clean
 
15
.IGNORE: clean
 
16
 
 
17
clean:
 
18
        rm *.vapi *.h *.so *~