First code commit.

This commit is contained in:
2018-11-21 21:40:40 -04:00
parent c67c95b097
commit dca9ebaea2
6 changed files with 308 additions and 1 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
TARGET = robotd
OBJECT = robotd.o
SOURCE = robotd.c
CFLAGS = -std=c11 -Wall -g -O0 `pkg-config --cflags python`
LDLIBS = -lmraa `pkg-config --libs python`
.PHONY: all
all: $(TARGET)
$(TARGET): $(OBJECT)
$(OBJECT): $(SOURCE)
.PHONY: clean
clean:
$(RM) $(TARGET) $(OBJECT)