You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
249 B

BOTDIR = $(BUILDDIR)/buildbot
USERDIR = $(BUILDDIR)/user
C_SOURCES = $(BOTDIR)/main.c
LD_EXTRAS = $(BOTDIR)/relative.o
include Makefile.rules
$(EXE): relative.o
relative.o: $(BOTDIR)/relative.c
cd $(BOTDIR) && $(CC) -c $(CFLAGS) -o $@ relative.c