Browse Subversion Repository
Contents of /tags/1.3/Makefile
Parent Directory
| Revision Log
Revision 124 -
( show annotations)
( download)
Tue Jan 8 07:24:02 2013 UTC
(11 years, 3 months ago)
by z0rac
File size: 721 byte(s)
1.3 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 |
TARGETS = befoo.exe extend.dll |
| 8 |
SUBDIRS = src extend icons |
| 9 |
|
| 10 |
all: $(TARGETS) |
| 11 |
|
| 12 |
befoo.exe: src ; @cp $</$@ . |
| 13 |
extend.dll: extend ; @cp $</$@ . |
| 14 |
icon: icons ; @/usr/bin/find $< -maxdepth 1 -name '*.ico' -exec cp {} . \; |
| 15 |
|
| 16 |
$(SUBDIRS):: ; @$(MAKE) -C $@ |
| 17 |
%.clean: ; @$(MAKE) -C $(basename $@) clean |
| 18 |
%.distclean: ; @$(MAKE) -C $(basename $@) distclean |
| 19 |
|
| 20 |
clean: mostlyclean $(SUBDIRS:=.clean) |
| 21 |
distclean: mostlyclean $(SUBDIRS:=.distclean) ; @$(RM) *~ |
| 22 |
mostlyclean: ; @$(RM) befoo.exe extend.dll *.ico |
|