back to scratko.xyz
aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorscratko <m@scratko.xyz>2024-11-21 23:01:56 +0300
committerscratko <m@scratko.xyz>2024-11-22 01:48:47 +0300
commit2f17165bd4c86885a75424d4f0ce6198c46c84b4 (patch)
treeadca6245c4f5859f271bd5880175fd56c603fd2c /Makefile
parentca449b813cef6c8f7348ff51302f125587a90a53 (diff)
downloadpicture-puzzle-2f17165bd4c86885a75424d4f0ce6198c46c84b4.tar.gz
picture-puzzle-2f17165bd4c86885a75424d4f0ce6198c46c84b4.tar.bz2
picture-puzzle-2f17165bd4c86885a75424d4f0ce6198c46c84b4.zip
Including resources in the object file
Convert pictures to array data (image_converter/converter.c) Resources are located in image_converter/resources.o
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 742e5f6..fd041ad 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,5 @@
-SRCMODULES = puzzle.cpp gameplay.cpp menu_callbacks.cpp solution_algorithm.cpp img_handler.cpp main.cpp
+SRCMODULES = puzzle.cpp gameplay.cpp menu_callbacks.cpp solution_algorithm.cpp img_handler.cpp \
+ image_converter/resources.cpp main.cpp
OBJMODULES = $(SRCMODULES:.cpp=.o)
CXX = g++
CXXFLAGS = -Wall -g