CFLAGS = -Wall -I dim/dim -Ldim/linux/ -ldim -lpthread -static PROGS = monitor_channel send_command all: $(PROGS) monitor_channel : monitor_channel.c $(CC) $< $(CFLAGS) -o $@ send_command : send_command.c $(CC) $< $(CFLAGS) -o $@ clean: rm -f $(PROGS)