Makefile
353 Bytes
#!smake
#
# Makefile for tool to make master data for 64DD games
#
PRDEPTH = ../..
include $(PRDEPTH)/PRdefs
OPTIMIZER = -g
TARGETS= n64mdisk
CFILES = n64mdisk.c
LCINCS = -I. -I$(PRDEPTH)/include
LCOPTS = -fullwarn
LDIRT= $(TARGETS)
default: $(TARGETS)
include $(COMMONRULES)
exports install: default
$(INSTALL) -m 555 -F /usr/sbin $(TARGETS)