GPLC   = gplc
CC     = gcc
CFLAGS = -O3 -fomit-frame-pointer -Wno-char-subscripts

# other local variables

#CFLAGS    = -O3
#CFLAGS = -O3 -fverbose-asm -fomit-frame-pointer
CFLAGS = -O3 -fverbose-asm -fomit-frame-pointer -fno-defer-pop

# for cl.exe use /FA to obtain assembly
#CFLAGS= /FA
#CFLAGS= /Ox /Oy

opt:
	 $(CC) -S $(CFLAGS) asm_inst.c


no:
	 $(CC) -S asm_inst.c

clean:
	-rm *.s




