Makefile
393 Bytes
#!smake
PRDEPTH = ../..
include $(PRDEPTH)/PRdefs
CFILES = \
main.c \
server.c \
vprintf.c \
ftob.c \
itob.c \
LCOPTS = -g -fullwarn
LCINCS = -I$(ROOT)/usr/include/PR
LLDLIBS =
OPTIMIZER = -O
TARGETS = gload
default: $(TARGETS)
include $(COMMONRULES)
install: default
$(INSTALL) -F /usr/sbin gload
exports: $(TARGETS)
$(TARGETS): $(OBJECTS)
$(CC) -o $@ $(OBJECTS) $(LDFLAGS)