initial commit of avs2bdnxml 2.08.

This commit is contained in:
Koroban
2013-07-23 12:04:20 +02:00
commit 879b32e9e0
34 changed files with 13106 additions and 0 deletions

22
debug/Makefile Normal file
View File

@@ -0,0 +1,22 @@
CC=i586-mingw32msvc-gcc
CFLAGS=-O3 -Wall -DLE_ARCH
LDFLAGS=-lm
OBJS=pgsparse.o
EXE=pgsparse.exe
%.o: %.c
$(CC) -c $< $(CFLAGS)
$(EXE): $(OBJS)
$(CC) -o $(EXE) $(OBJS) $(LDFLAGS)
all: $(EXE)
dist: clean all
strip -s $(EXE)
upx-ucl --best $(EXE)
rm -f $(OBJS)
.phony clean:
rm -f $(EXE) $(OBJS)