Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
aakashdhakal authored Feb 25, 2023
1 parent 73cea3c commit 7a3d87e
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
Binary file added Aakash_Travels.exe
Binary file not shown.
Binary file added Aakash_Travels.ico
Binary file not shown.
33 changes: 33 additions & 0 deletions Makefile.win
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Project: Aakash Travels
# Makefile created by Embarcadero Dev-C++ 6.3

CPP = g++.exe
CC = gcc.exe
WINDRES = windres.exe
RES = Aakash_Travels_private.res
OBJ = ../main.o $(RES)
LINKOBJ = ../main.o $(RES)
LIBS = -L"E:/Dev-Cpp/TDM-GCC-64/lib" -L"E:/Dev-Cpp/TDM-GCC-64/x86_64-w64-mingw32/lib" -static-libgcc
INCS = -I"E:/Dev-Cpp/TDM-GCC-64/include" -I"E:/Dev-Cpp/TDM-GCC-64/x86_64-w64-mingw32/include" -I"E:/Dev-Cpp/TDM-GCC-64/lib/gcc/x86_64-w64-mingw32/9.2.0/include"
CXXINCS = -I"E:/Dev-Cpp/TDM-GCC-64/include" -I"E:/Dev-Cpp/TDM-GCC-64/x86_64-w64-mingw32/include" -I"E:/Dev-Cpp/TDM-GCC-64/lib/gcc/x86_64-w64-mingw32/9.2.0/include" -I"E:/Dev-Cpp/TDM-GCC-64/lib/gcc/x86_64-w64-mingw32/9.2.0/include/c++"
BIN = "Aakash Travels.exe"
CXXFLAGS = $(CXXINCS)
CFLAGS = $(INCS)
DEL = E:\Dev-Cpp\devcpp.exe INTERNAL_DEL

.PHONY: all all-before all-after clean clean-custom

all: all-before $(BIN) all-after

clean: clean-custom
${DEL} $(OBJ) $(BIN)

$(BIN): $(OBJ)
$(CPP) $(LINKOBJ) -o $(BIN) $(LIBS)

../main.o: ../main.cpp
$(CPP) -c ../main.cpp -o ../main.o $(CXXFLAGS)

Aakash_Travels_private.res: Aakash_Travels_private.rc
$(WINDRES) -i Aakash_Travels_private.rc --input-format=rc -o Aakash_Travels_private.res -O coff

0 comments on commit 7a3d87e

Please sign in to comment.