Files
dreamlayers.netbsd-mopd/Makefile
Maciej W. Rozycki 8cabaa5ecb Application of mopd-2.5.3-linux.patch:
* Sun Nov 17 2002 Maciej W. Rozycki <macro@ds2.pg.gda.pl> 2.5.3-15
- modified Makefiles to improve portability: get rid of "$@"
  and "$^" from explicit rules (linux)

* Fri Oct 26 2001 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
- created a patch containing all the Linux-specific changes
  from mopd-linux 2.5.3, with a number of fixes; hopefully they
  don't interact with non-Linux systems anymore (linux)

Downloaded from:
ftp://ftp.linux-mips.org/pub/linux/mips/people/macro/mopd/mopd-2.5.3-linux.patch.gz
.patch SHA256 = 416b4b90b8fd349d9d39ef8bb35aabe6eede76b51170255999dc42dfa3518e09
Patch history copied from:
ftp://ftp.linux-mips.org/pub/linux/mips/people/macro/mopd/mopd-2.5.3-15.spec
2020-10-31 23:51:52 -04:00

17 lines
294 B
Makefile

AR = ar
CC = gcc
RANLIB = ranlib
CFLAGS = -O2 -g
LDFLAGS =
SUBDIRS = common mopd mopchk mopprobe moptrace
all clean:
@for dir in $(SUBDIRS); do \
(cd $$dir && \
$(MAKE) "AR=$(AR)" "CC=$(CC)" "RANLIB=$(RANLIB)" \
"CFLAGS=$(CFLAGS)" "LDFLAGS=$(LDFLAGS)" $@) || \
exit 1; \
done