APP := mw-display-test

all: $(APP)

$(APP): main.o
	$(CC) $(CFLAGS) -o $@ $<

clean:
	rm -f $(APP) *.o *~ *.bak
