| 1 | CFLAGS=-MMD -O2 -Wall -I/opt/local/include -g |
| 2 | LDFLAGS=-L/opt/local/lib -lusb-1.0 -lm |
| 3 | CC=gcc |
| 4 | |
| 5 | OBJS=hmcfgusb.o hmland.o |
| 6 | |
| 7 | all: hmland |
| 8 | |
| 9 | DEPEND=$(OBJS:.o=.d) |
| 10 | -include $(DEPEND) |
| 11 | |
| 12 | hmland: $(OBJS) |
| 13 | |
| 14 | clean: |
| 15 | rm -f $(OBJS) $(DEPEND) hmland |
| 16 | |
| 17 | .PHONY: all clean |