~matboutigny/hangman8086/two_players_mode

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Fabien LOISON
  • Date: 2011-05-16 14:31:51 UTC
  • Revision ID: flo@flogisoft.com-20110516143151-fdf6mitjv9h3ypwn
* Makefile and README added

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#The program name (8 char max)
 
2
PROGRAM_NAME = hangman
 
3
#The program ext (COM or EXE)
 
4
PROGRAM_EXT = com
 
5
 
 
6
 
 
7
all: clean program
 
8
 
 
9
program:
 
10
        ./buildenv/build.sh $(PROGRAM_NAME) $(PROGRAM_EXT)
 
11
 
 
12
clean:
 
13
        rm -f $(PROGRAM_NAME).$(PROGRAM_EXT)
 
14
        rm -f $(PROGRAM_NAME).sh
 
15
 
 
16
buildenv:
 
17
        wget -c "http://download.flogisoft.com/files/various/emu8086/emu8086-buildenv_1.0.tar.gz"
 
18
        tar -xzf emu8086-buildenv_1.0.tar.gz
 
19
        rm -f emu8086-buildenv_1.0.tar.gz
 
20
        cd buildenv/ && ./makeenv.sh
 
21
        
 
22