diff --git a/examples/.gitignore b/examples/.gitignore index 6dee4d63..27a250a6 100644 --- a/examples/.gitignore +++ b/examples/.gitignore @@ -15,14 +15,17 @@ opengl_example/Debug/* opengl_example/Release/* opengl_example/ipch/* opengl_example/x64/* +opengl_example/opengl_example opengl3_example/Debug/* opengl3_example/Release/* opengl3_example/ipch/* opengl3_example/x64/* +opengl3_example/opengl3_example *.opensdf *.sdf *.suo *.vcxproj.user +*.o ## Ini files imgui.ini diff --git a/examples/opengl3_example/Makefile b/examples/opengl3_example/Makefile index 748fd4dc..7d8fcbbc 100644 --- a/examples/opengl3_example/Makefile +++ b/examples/opengl3_example/Makefile @@ -10,6 +10,7 @@ #CXX = g++ +EXE = opengl3_example OBJS = main.o imgui_impl_glfw_gl3.o OBJS += ../../imgui.o ../../imgui_demo.o ../../imgui_draw.o OBJS += ../libs/gl3w/GL/gl3w.o @@ -41,12 +42,12 @@ endif .cpp.o: $(CXX) $(CXXFLAGS) -c -o $@ $< -all:imgui_example +all: $(EXE) @echo Build complete for $(ECHO_MESSAGE) -imgui_example:$(OBJS) - $(CXX) -o imgui_example $(OBJS) $(CXXFLAGS) $(LIBS) +$(EXE): $(OBJS) + $(CXX) -o $(EXE) $(OBJS) $(CXXFLAGS) $(LIBS) clean: - rm $(OBJS) + rm $(EXE) $(OBJS) diff --git a/examples/opengl_example/Makefile b/examples/opengl_example/Makefile index d05a0f90..7986229f 100644 --- a/examples/opengl_example/Makefile +++ b/examples/opengl_example/Makefile @@ -10,6 +10,7 @@ #CXX = g++ +EXE = opengl_example OBJS = main.o imgui_impl_glfw.o OBJS += ../../imgui.o ../../imgui_demo.o ../../imgui_draw.o @@ -40,12 +41,12 @@ endif .cpp.o: $(CXX) $(CXXFLAGS) -c -o $@ $< -all:imgui_example +all: $(EXE) @echo Build complete for $(ECHO_MESSAGE) -imgui_example:$(OBJS) - $(CXX) -o imgui_example $(OBJS) $(CXXFLAGS) $(LIBS) +$(EXE): $(OBJS) + $(CXX) -o $(EXE) $(OBJS) $(CXXFLAGS) $(LIBS) clean: - rm $(OBJS) + rm $(EXE) $(OBJS)