mirror of
https://github.com/dreamlayers/netbsd-mopd.git
synced 2026-02-27 08:58:59 +00:00
* 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
17 lines
294 B
Makefile
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
|