blob: f9dcd572bb8d2fc8adc4cb831f3c4067004b3f61 [file] [log] [blame]
Alexandre Julliard44ed71f1997-12-21 19:17:50 +00001SUBDIRS = \
Marcus Meissner32b32d81999-01-29 15:12:10 +00002 avitools \
Alexandre Julliarda11d7b11998-03-01 20:05:02 +00003 clock \
Eric Williams30008a01999-02-05 17:40:47 +00004 cmdlgtst \
Alexandre Julliardd30dfd21998-09-27 18:28:36 +00005 control \
Morten Eriksen55bcda81999-09-22 15:22:58 +00006 osversioncheck \
Alexandre Julliard44ed71f1997-12-21 19:17:50 +00007 notepad \
8 progman \
Sylvain St.Germain1bb0e661999-03-14 14:00:22 +00009 regapi \
Alexandre Julliarddadf78f1998-05-17 17:13:43 +000010 regtest \
Alexandre Julliarda11d7b11998-03-01 20:05:02 +000011 view \
Dave Pickles74f440e1999-06-06 15:24:04 +000012 wcmd \
Joshua Thielena3f23802000-03-15 19:06:39 +000013 winemine \
Alexandre Julliard44ed71f1997-12-21 19:17:50 +000014 winhelp \
15 winver
Alexandre Julliard02ed4c21996-03-02 19:34:10 +000016
17all: $(SUBDIRS)
18
19$(SUBDIRS): dummy
20 @cd $@; $(MAKE)
21
22depend:
Alexandre Julliard530ee841996-10-23 16:59:13 +000023 for i in $(SUBDIRS); do (cd $$i; $(MAKE) depend) || exit 1; done
Alexandre Julliard02ed4c21996-03-02 19:34:10 +000024
Alexandre Julliard1285c2f1996-05-06 16:06:24 +000025install:
Alexandre Julliard530ee841996-10-23 16:59:13 +000026 for i in $(SUBDIRS); do (cd $$i; $(MAKE) install) || exit 1; done
Alexandre Julliard1285c2f1996-05-06 16:06:24 +000027
Alexandre Julliard85ed45e1998-08-22 19:03:56 +000028uninstall:
29 for i in $(SUBDIRS); do (cd $$i; $(MAKE) uninstall) || exit 1; done
30
Alexandre Julliard02ed4c21996-03-02 19:34:10 +000031clean:
Alexandre Julliard530ee841996-10-23 16:59:13 +000032 for i in $(SUBDIRS); do (cd $$i; $(MAKE) clean) || exit 1; done
Alexandre Julliard02ed4c21996-03-02 19:34:10 +000033
34dummy: