diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-05-29 13:15:58 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-05-29 13:15:58 +0200 |
commit | 529f067e65b0146c5afa150103809ba5e09869b7 (patch) | |
tree | 80fa7a44ce8f5d43b2cc04dc1d0fd1fb79eb254e /client/makefile | |
parent | dbd005573295293d35647dc0e9feb2beec48a31c (diff) |
client/robot sim connected
Diffstat (limited to 'client/makefile')
-rw-r--r-- | client/makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/makefile b/client/makefile index f79dd11..87d06a9 100644 --- a/client/makefile +++ b/client/makefile @@ -4,11 +4,14 @@ RM = rm -f CFLAGS = EXECNAME = main +include ../shared/os.mk + all: $(EXECNAME) SOURCES := $(wildcard *.c) HEADERS := $(wildcard *.h) # include ../shared/makefile + OBJECTS := $(patsubst %.c,%.o, $(SOURCES)) .o: |