# HG changeset patch # User Mychaela Falconia # Date 1693341351 0 # Node ID 8be0b96b7c8d1f11e258ef65e6b2bb410c340138 # Parent 0f74428c177c3c275b9c65a975f59e8c87d302f1 fpga: add top Makefile across projects diff -r 0f74428c177c -r 8be0b96b7c8d fpga/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fpga/Makefile Tue Aug 29 20:35:51 2023 +0000 @@ -0,0 +1,12 @@ +SUBDIR= sniffer-basic sniffer-pps + +all: ${SUBDIR} + +${SUBDIR}: FRC + cd $@; ${MAKE} ${MFLAGS} + +clean: FRC + rm -f a.out core errs + for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done + +FRC: