AFPBridge/Makefile.mk
Stephen Heumann b5c3a29f37 Initial version, with test program.
It can currently send a GetStatus request and get a response.
2017-03-18 19:42:25 -05:00

12 lines
210 B
Makefile

CFLAGS = -i -w
OBJS = dsitest.o aspinterface.o dsi.o readtcp.o endian.o tcpconnection.o atipmapping.o
PROG = dsitest
$(PROG): $(OBJS)
occ $(CFLAGS) -o $@ $(OBJS)
.PHONY: clean
clean:
$(RM) $(OBJS) $(PROG)