Skip to content

Commit

Permalink
vogsphere -> github
Browse files Browse the repository at this point in the history
  • Loading branch information
pacifistes committed Oct 16, 2018
1 parent 34c7ddd commit 68c234b
Show file tree
Hide file tree
Showing 20 changed files with 768 additions and 554 deletions.
18 changes: 0 additions & 18 deletions Hash.cpp

This file was deleted.

21 changes: 0 additions & 21 deletions Hash.hpp

This file was deleted.

27 changes: 27 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
NAME = abstractVm
FLAGS = -std=c++14 -Wall -Wextra -Werror
INCLUDE = includes/
SRCSPATH = srcs/
SRCS = Operand.cpp OperandFactory.cpp Stack.cpp StackManager.cpp eOperandType.cpp main.cpp
OBJ= $(SRC:.cpp=.o)
CC = clang++

SRC = $(addprefix $(SRCSPATH), $(SRCS))

%.o: %.cpp
$(CC) -I $(INCLUDE) -c $(FLAGS) $< -o $@

all: $(NAME)

$(NAME): $(OBJ)
$(CC) $(FLAGS) -I $(INCLUDE) -o $(NAME) $(OBJ)

clean:
rm -f $(OBJ)

fclean:
rm -f $(NAME) $(OBJ)

re: fclean all

.PHONY: all clean fclean re
90 changes: 0 additions & 90 deletions Operand.cpp

This file was deleted.

120 changes: 0 additions & 120 deletions OperandFactory.cpp

This file was deleted.

Loading

0 comments on commit 68c234b

Please sign in to comment.