initial commit of avs2bdnxml 2.08.
This commit is contained in:
22
debug/Makefile
Normal file
22
debug/Makefile
Normal 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)
|
||||
|
||||
Reference in New Issue
Block a user