Skip to content
Snippets Groups Projects
Commit f14393c8 authored by John Hodge's avatar John Hodge
Browse files

Server - added 'install' make target

parent 630d2c5a
No related merge requests found
......@@ -22,6 +22,10 @@ all: $(BIN)
clean:
$(RM) $(BIN) $(OBJ) $(DEPFILES)
install: $(BIN)
mkdir -p $(INSTALLDIR)
cp $(BIN) $(INSTALLDIR)
$(BIN): $(OBJ)
$(CC) -o $(BIN) $(OBJ) $(LINKFLAGS)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment