11 lines · plain
1BOTDIR = $(BUILDDIR)/buildbot2USERDIR = $(BUILDDIR)/user3C_SOURCES = $(BOTDIR)/main.c4LD_EXTRAS = $(BOTDIR)/relative.o5 6include Makefile.rules7 8$(EXE): relative.o9relative.o: $(BOTDIR)/relative.c10 cd $(BOTDIR) && $(CC) -c $(CFLAGS) -o $@ relative.c11