FreeCalypso > hg > freecalypso-ui-dev
changeset 4:839a63f0efda
top Makefile created
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 14 Mar 2018 23:06:37 +0000 |
parents | 06e900c54ae3 |
children | 45c81216d964 |
files | Makefile |
diffstat | 1 files changed, 15 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Wed Mar 14 23:06:37 2018 +0000 @@ -0,0 +1,15 @@ +SUBDIR= lcdemu lcdpoll + +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 + +install: FRC + for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done + +FRC: