Browse Subversion Repository
Contents of /tags/1.1/Makefile
Parent Directory
| Revision Log
Revision 71 -
( show annotations)
( download)
Sun Feb 7 18:35:58 2010 UTC
(14 years, 2 months ago)
by z0rac
File size: 635 byte(s)
1.1 released.
| 1 |
# |
| 2 |
# Copyright (C) 2009 TSUBAKIMOTO Hiroya <zorac@4000do.co.jp> |
| 3 |
# |
| 4 |
# This software comes with ABSOLUTELY NO WARRANTY; for details of |
| 5 |
# the license terms, see the LICENSE.txt file included with the program. |
| 6 |
# |
| 7 |
NAME = befoo |
| 8 |
SRCDIR = src |
| 9 |
EXTDIR = extend |
| 10 |
TARGETS = $(NAME).exe extend.dll |
| 11 |
|
| 12 |
all: $(TARGETS) |
| 13 |
|
| 14 |
$(NAME).exe: |
| 15 |
@$(MAKE) -C $(SRCDIR) |
| 16 |
@mv $(SRCDIR)/$@ . |
| 17 |
|
| 18 |
extend.dll: |
| 19 |
@$(MAKE) -C $(EXTDIR) |
| 20 |
@mv $(EXTDIR)/$@ . |
| 21 |
|
| 22 |
clean: mostlyclean |
| 23 |
@$(MAKE) -C $(SRCDIR) $@ |
| 24 |
@$(MAKE) -C $(EXTDIR) $@ |
| 25 |
|
| 26 |
distclean: mostlyclean |
| 27 |
@$(RM) *~ |
| 28 |
@$(MAKE) -C $(SRCDIR) $@ |
| 29 |
@$(MAKE) -C $(EXTDIR) $@ |
| 30 |
|
| 31 |
mostlyclean: |
| 32 |
@$(RM) $(TARGETS) |
|