Skip to content
Snippets Groups Projects
Unverified Commit bedab74b authored by Jake Drahos's avatar Jake Drahos
Browse files

Added symlinks to makefile

parent a47c75c7
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,7 @@ CLIBINARY=Cli
CLISRCDIR=src/cli
CLISOURCES := $(wildcard $(CLISRCDIR)/*.c)
CLIOBJECTS = $(CLISOURCES:$(CLISRCDIR)/%.c=$(OBJDIR)/%.o)
SYMLINKS=monitor setpid
# Frontend-common stuff
FESRCDIR=src/frontend
......@@ -33,7 +34,10 @@ FECOBJECTS = $(FECSOURCES:$(FESRCDIR)/%.c=$(OBJDIR)/%.o)
OBJECTS= $(CLIOBJECTS) $(BECOBJECTS) $(BECPPOBJECTS) $(FECOBJECTS)
# Default target
all: logs objdir backend cli
all: logs objdir backend cli $(SYMLINKS)
$(SYMLINKS): $(CLIBINARY)
$(foreach symlink, $(SYMLINKS), ln -s $(CLIBINARY) $(symlink);)
vrpn: vrpn/build
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment