# Makefile for vmd/cmd/profile.

CFLAGS	= -D_MINIX $(OPT)
CCLD	= $(CC) -fnone $(CFLAGS)

install:	\
	/usr/sbin/profile \
	/usr/sbin/profstop \

clean:
	rm -f core

/usr/sbin/profile:	profile.c
	$(CCLD) -o $@ profile.c

/usr/sbin/profstop:	profstop.c
	$(CCLD) -o $@ profstop.c
