# Wedit Makefile for project gas2masm
CFLAGS=-Ic:\lcc\include  -O 
CC=c:\lcc\bin\lcc.exe
LINKER=c:\lcc\bin\lcclnk.exe
OBJS=\
	gas2masm.obj

LIBS= tcconio.lib

c:\qs-lcc\gas2masm\lcc\gas2masm.exe:	$(OBJS) Makefile
	$(LINKER)  -s -subsystem console -o c:\qs-lcc\gas2masm\lcc\gas2masm.exe $(OBJS) $(LIBS)

# Build GAS2MASM.C
GAS2MASM_C=\

gas2masm.obj: $(GAS2MASM_C) c:\qs-lcc\gas2masm\gas2masm.c
	$(CC) -c $(CFLAGS) c:\qs-lcc\gas2masm\gas2masm.c

