mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
Now that oss-fuzz is on a clang commit > the 17.x release candidates, we can start looking at some shiny new features to enable.
18 lines
219 B
Makefile
18 lines
219 B
Makefile
PROGRAM = little
|
|
OBJS = main.o other.o
|
|
CXXFLAGS = -g -std=c++23
|
|
|
|
all: $(PROGRAM)
|
|
|
|
$(PROGRAM): $(OBJS)
|
|
$(CXX) -o $@ $(OBJS)
|
|
|
|
%.o: %.cpp
|
|
$(CXX) $(CXXFLAGS) -o $@ -c $<
|
|
|
|
clean:
|
|
rm $(OBJS) $(PROGRAM)
|
|
|
|
run:
|
|
./$(PROGRAM)
|