# # Makefile for hello project # DEBUG = -g CC = qcc LD = qcc #CC = ntox86-gcc-2.95.3// removed #LD = ntox86-gcc-2.95.3// removed TARGET = -Vgcc_ntox86 #TARGET = -Vgcc_ntoppcbe #TARGET = -V3.3.5,gcc_ntoarmle CFLAGS += $(DEBUG) $(TARGET) -w9 LDFLAGS+= $(DEBUG) $(TARGET) all: hello clean: rm -f *.o *.img hello