aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--makefile12
-rwxr-xr-xwindows_crosscompile.sh2
3 files changed, 12 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 205236c..3ebf37b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
__pycache__
obj/*.o
a.out
+a.exe
notes.txt
diff --git a/makefile b/makefile
index a217299..a65dd4b 100644
--- a/makefile
+++ b/makefile
@@ -2,8 +2,13 @@
# Example: -I /usr/include/boost/
INCLUDE=
+# Compiler. Pretty self-explanatory.
+CXX = g++
+
# Enabling C++17 mode so I can have more <algorithm> stuff
-CFLAGS=-std=c++17
+CVERSION=-std=c++17
+
+CFLAGS=
# LIBDIR is where you can find the linkable objects or whatever. They are used for the linking stage.
LIBDIR=-L /usr/lib/x86_64-linux-gnu/
@@ -19,11 +24,11 @@ OBJECTS=$(patsubst src/%.cpp, $(OBJDIR)%.o, $(SOURCES))
# This last line creates an identical list of objects based on the list of .cpp files.
a.out: $(OBJECTS)
- g++ $(LIBDIR) $(CFLAGS) $(LIBS) $(OBJECTS)
+ $(CXX) $(LIBDIR) $(CVERSION) $(CFLAGS) $(LIBS) $(OBJECTS)
$(OBJECTS): obj/%.o : src/%.cpp
mkdir -p obj
- g++ -g $(INCLUDE) $(CFLAGS) -c $< -o $@
+ $(CXX) -g $(INCLUDE) $(CVERSION) $(CFLAGS) -c $< -o $@
clean:
rm obj/*.o
@@ -33,3 +38,4 @@ cleanall:
install: a.out
cp a.out /usr/bin/satscalc
+
diff --git a/windows_crosscompile.sh b/windows_crosscompile.sh
new file mode 100755
index 0000000..ae3dcbd
--- /dev/null
+++ b/windows_crosscompile.sh
@@ -0,0 +1,2 @@
+make clean
+make CXX=x86_64-w64-mingw32-g++ CFLAGS=-static