avs2bdnxml/debug/Makefile

23 lines
305 B
Makefile
Raw Normal View History

2013-07-23 18:04:20 +08:00
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)