Jedi Academy Server Log Converter will automatically convert Jedi Academy logs to RTF or HTML giving colors to names and text.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Jedi-Academy-Log-Converter/Makefile.win

33 lines
978 B

# Project: JALOG_CONV
# Makefile created by Dev-C++ 4.9.9.2
CPP = g++.exe
CC = gcc.exe
WINDRES = windres.exe
RES = JALOG_CONV_private.res
OBJ = main.o $(RES)
LINKOBJ = main.o $(RES)
LIBS = -L"C:/Dev-Cpp/lib" -D_GNU_SOURCE
INCS = -I"C:/Dev-Cpp/include"
CXXINCS = -I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"C:/Dev-Cpp/include/c++/3.4.2/backward" -I"C:/Dev-Cpp/include/c++/3.4.2/mingw32" -I"C:/Dev-Cpp/include/c++/3.4.2" -I"C:/Dev-Cpp/include"
BIN = JALOG_CONV.EXE
CXXFLAGS = $(CXXINCS)
CFLAGS = $(INCS) -D_GNU_SOURCE
RM = rm -f
.PHONY: all all-before all-after clean clean-custom
all: all-before JALOG_CONV.EXE all-after
clean: clean-custom
${RM} $(OBJ) $(BIN)
$(BIN): $(OBJ)
$(CC) $(LINKOBJ) -o "JALOG_CONV.EXE" $(LIBS)
main.o: main.c
$(CC) -c main.c -o main.o $(CFLAGS)
JALOG_CONV_private.res: JALOG_CONV_private.rc
$(WINDRES) -i JALOG_CONV_private.rc --input-format=rc -o JALOG_CONV_private.res -O coff