-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepared two more libAdikted examples Added some graphics API functions Started making support of various map sizes Added support for VSN files Fixed verification of QUICK_* in script - length up to 511 Added warning if there are unclosed IF loops
- Loading branch information
1 parent
18ebd2c
commit 461efdf
Showing
88 changed files
with
6,460 additions
and
1,941 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Project: viewmap | ||
# Makefile created by Dev-C++ 4.9.9.2 | ||
|
||
CPP = g++.exe -D__DEBUG__ | ||
CC = gcc.exe -D__DEBUG__ | ||
WINDRES = windres.exe | ||
RES = viewmap_private.res | ||
OBJ = viewmap.o $(RES) | ||
LINKOBJ = viewmap.o $(RES) | ||
LIBS = -L"D:/ProgsNT/Dev-Cpp/lib" -mwindows -lmingw32 -lSDLmain -lSDL ../libadikted/libadikted.a -g3 -march=i386 | ||
INCS = -I"D:/ProgsNT/Dev-Cpp/include" | ||
CXXINCS = -I"D:/ProgsNT/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"D:/ProgsNT/Dev-Cpp/include/c++/3.4.2/backward" -I"D:/ProgsNT/Dev-Cpp/include/c++/3.4.2/mingw32" -I"D:/ProgsNT/Dev-Cpp/include/c++/3.4.2" -I"D:/ProgsNT/Dev-Cpp/include" | ||
BIN = viewmap.exe | ||
CXXFLAGS = $(CXXINCS) -g3 -march=i386 | ||
CFLAGS = $(INCS) -Dmain=SDL_main -g3 -march=i386 | ||
RM = rm -f | ||
|
||
.PHONY: all all-before all-after clean clean-custom | ||
|
||
all: all-before viewmap.exe all-after | ||
|
||
|
||
clean: clean-custom | ||
${RM} $(OBJ) $(BIN) | ||
|
||
$(BIN): $(OBJ) | ||
$(CC) $(LINKOBJ) -o "viewmap.exe" $(LIBS) | ||
|
||
viewmap.o: viewmap.c | ||
$(CC) -c viewmap.c -o viewmap.o $(CFLAGS) | ||
|
||
viewmap_private.res: viewmap_private.rc | ||
$(WINDRES) -i viewmap_private.rc --input-format=rc -o viewmap_private.res -O coff |
Oops, something went wrong.