From: Andrey C. <sku...@us...> - 2006-06-06 02:25:29
|
Update of /cvsroot/eas-dev/ocmng In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv23450 Modified Files: Makefile Log Message: Set components for successful E/AS work Index: Makefile =================================================================== RCS file: /cvsroot/eas-dev/ocmng/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- Makefile 2 Jun 2006 14:44:45 -0000 1.1 +++ Makefile 5 Jun 2006 12:23:09 -0000 1.2 @@ -8,14 +8,17 @@ INCS = funcs_s.prg ocmng.ch PROGS = ocmng$(EXESUFF) xml2xmo$(EXESUFF) #PROGS = ocmng_compil$(EXESUFF) ocmng_dump$(EXESUFF) ocmng_install$(EXESUFF) ocmng$(EXESUFF) +PODIRS = components/ocmng .SUFFIXES: .prg .o .po all: $(OBJS) $(PROGS) + for dir in $(PODIRS);do cd $$dir && make;done ./xml2xmo components clean: - rm -f $(PROGS) *.ex *.nm *.uri *.c *.s *.o *.a *.po *.log *.pa *.b *.BAK *.bak *~ core* *core + rm -f $(PROGS) *.so *.ex *.nm *.uri *.c *.s *.o *.a *.po *.log *.pa *.b *.BAK *.bak *~ core* *core + for dir in $(PODIRS);do cd $$dir && make clean;done ./cleanxmo.sh ocmng_compil$(EXESUFF): ocmng_compil.prg $(OBJS) $(INCS) |