mirror of
https://github.com/dreamlayers/netbsd-mopd.git
synced 2026-01-11 23:43:12 +00:00
13 lines
273 B
Makefile
13 lines
273 B
Makefile
# $NetBSD: Makefile.linux,v 1.1 2016/06/08 01:16:35 christos Exp $
|
|
SRCS=mopcopy.c
|
|
OBJS=${SRCS:.c=.o}
|
|
|
|
LDLIBS+=../common/libcommon.a
|
|
CFLAGS+=-I../common
|
|
# -DNOAOUT not needed as long as including of files from netbsd_h works
|
|
|
|
mopcopy: ${OBJS}
|
|
|
|
clean:
|
|
rm -f ${OBJS} mopcopy
|