Remove Makefile_win (useless)

This commit is contained in:
Dale Weiler 2012-04-29 16:38:38 -04:00
parent 5d64001c36
commit 1db21393cf

View file

@ -1,21 +0,0 @@
CC = i486-mingw32-gcc
CFLAGS += -Wall
OBJ = main.o \
lex.o \
error.o \
parse.o \
typedef.o \
util.o \
code.o \
asm.o \
ast.o \
ir.o
%.o: %.c
$(CC) -c $< -o $@ $(CFLAGS)
gmqcc: $(OBJ)
$(CC) -o $@ $^ $(CFLAGS)
clean:
rm -f *.o gmqcc