# TARGETS= hostside CFLAGS= -Wall -Werror -Wstrict-prototypes -Wmissing-prototypes \ -Wpointer-arith -Wwrite-strings $(OPTIMISE) OPTIMISE= -O2 all: $(TARGETS) hostside: serialio.o nmra.o main.o $(CC) $(CFLAGS) -o $@ $+ %.c: hostside.h clean: rm -f *.o $(TARGETS)