1999-08-15 10:15:05 +00:00
|
|
|
#
|
|
|
|
# Makefile : Builds wxWindows utils for Unix.
|
|
|
|
#
|
|
|
|
|
2003-06-14 16:18:39 +00:00
|
|
|
UTILS_SUBDIRS=tex2rtf hhp2cached makegen HelpGen dialoged helpview configtool
|
2000-03-15 14:58:04 +00:00
|
|
|
|
1999-08-15 10:15:05 +00:00
|
|
|
all:
|
2000-03-15 14:58:04 +00:00
|
|
|
@for d in $(UTILS_SUBDIRS); do (cd $$d && $(MAKE)); done
|
1999-08-15 10:15:05 +00:00
|
|
|
|
|
|
|
clean:
|
2000-03-15 14:58:04 +00:00
|
|
|
@for d in $(UTILS_SUBDIRS); do (cd $$d && $(MAKE) clean); done
|
1999-08-15 10:15:05 +00:00
|
|
|
|