Compare commits

..

No commits in common. "bfda0a7548e2d65156faa2b3215f51a2024d3916" and "44eec651e06c710fbf8097dbaea1b7be59f91a2a" have entirely different histories.

5 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
CXX = c++
CPPFLAGS = -std=c++98 -Wall -Wextra -Werror -g
SRCDIR = src
OBJDIR = obj
NAME = megaphone
SRCS = $(wildcard $(SRCDIR)/*.cpp)
OBJS = $(patsubst $(SRCDIR)/%.cpp,$(OBJDIR)/%.o,$(SRCS))
all: $(NAME)
$(OBJDIR)/%.o: $(SRCDIR)/%.cpp
$(CXX) $(CPPFLAGS) -c $< -o $@
$(NAME): $(OBJS)
$(CXX) $(CPPFLAGS) $^ -o $@
clean:
rm -rf $(OBJDIR)/*.o
fclean: clean
rm -fr $(NAME)
re: fclean all

View File

View File

BIN
subject.pdf Normal file

Binary file not shown.