FreeCalypso > hg > themwi-interim
changeset 4:ce450869db09
add top Makefile
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sun, 09 Jun 2024 00:00:31 +0000 |
| parents | 847690ea7f4a |
| children | e7b192a5dee5 |
| files | Makefile |
| diffstat | 1 files changed, 25 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Sun Jun 09 00:00:31 2024 +0000 @@ -0,0 +1,25 @@ +PROGDIR=mncc +LIBDIR= libutil +SUBDIR= ${PROGDIR} ${LIBDIR} +DESTDIR= + +all: ${SUBDIR} + +mncc: libutil + +${SUBDIR}: FRC config.defs + cd $@; ${MAKE} ${MFLAGS} + +config.defs: + @echo 'You must run ./configure before make' + @false + +install: FRC + for i in ${PROGDIR}; do (cd $$i; ${MAKE} ${MFLAGS} \ + DESTDIR=${DESTDIR} install); done + +clean: FRC + rm -f a.out core errs + for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done + +FRC:
