Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

uniforms with matrix tranformations and ply loading #14

Merged
merged 15 commits into from
Dec 2, 2024
Prev Previous commit
Next Next commit
Update makefile
  • Loading branch information
wyatt-radkiewicz committed Dec 2, 2024
commit 6b96620600f9e1d1f3cd6e8811a7d218c3f416c6
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ ifeq ($(SDL3_EXISTS),0)
$(BINDIR)/$(TARGET): $(OBJS)
mkdir -p $(dir $@)
$(CC) $^ -o $@ $(LDFLAGS) $(LDFLAGS_LIB)
run: $(BINDIR)/$(TARGET)
run: $(BINDIR)/$(TARGET) shaders
$<
gdb: $(BINDIR)/$(TARGET)
gdb: $(BINDIR)/$(TARGET) shaders
gdb $<
lldb: $(BINDIR)/$(TARGET)
lldb: $(BINDIR)/$(TARGET) shaders
lldb $<

# $(1) source file
Expand Down