diff --git a/Makefile b/Makefile index 92665cb1444e12060a5e0853e779e70c53f773f6..d4d62675e80bb6511c3b64174976279c6e797910 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,19 @@ -SUBDIRS += \ - vmebridge \ - utils \ - cdcm \ - lib \ - icv196 \ - vmod \ - vd80 \ - xmem \ - mttn \ - ctr \ - cvorg \ - sis33 \ +DIRS = \ + sis33 \ + vd80-2 \ + encore \ + mil1553 \ + ctr-2.0 \ + cvorb \ + cvorg \ + vmebridge \ +.PHONY: all clean cleanall $(DIRS) + +all clean cleanall: $(DIRS) +clean: TARGET = clean +cleanall: TARGET = cleanall + +$(DIRS): + $(MAKE) -C $@ $(TARGET) -include ./makefiles/Makefile.base diff --git a/Makefile.old b/Makefile.old new file mode 100644 index 0000000000000000000000000000000000000000..92665cb1444e12060a5e0853e779e70c53f773f6 --- /dev/null +++ b/Makefile.old @@ -0,0 +1,16 @@ +SUBDIRS += \ + vmebridge \ + utils \ + cdcm \ + lib \ + icv196 \ + vmod \ + vd80 \ + xmem \ + mttn \ + ctr \ + cvorg \ + sis33 \ + + +include ./makefiles/Makefile.base