From cc6350402089b7ad686516fbac1c0f4c5236ae45 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Mon, 1 Oct 2012 15:17:02 +0200 Subject: [PATCH] Rename test.cpp to main.cpp. --- Makefile | 2 +- test.cpp => main.cpp | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename test.cpp => main.cpp (100%) diff --git a/Makefile b/Makefile index 4667f41..9cd3e94 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CC=gcc CXX=g++ CXXFLAGS=-Wall LDFLAGS=-lSDL -lSDL_image -lGL -OBJS=test.o util.o widgets.o +OBJS=main.o util.o widgets.o test: $(OBJS) $(CXX) -o test $(OBJS) $(LDFLAGS) diff --git a/test.cpp b/main.cpp similarity index 100% rename from test.cpp rename to main.cpp -- 2.39.2