# Wedit Makefile for project new1 SRCDIR=c:\users\user\desktop\ci\new1 CFLAGS=-I"C:\lcc\include" -g2 CC=$(LCCROOT)\bin\lcc.exe LINKER=$(LCCROOT)\bin\lcclnk.exe OBJS=\ new1.obj LIBS= EXE=new1.exe $(EXE): $(OBJS) Makefile $(LINKER) -subsystem console -o $(SRCDIR)\lcc1\new1.exe $(OBJS) $(LIBS) # Build new1.c NEW1_C=\ c:\lcc\include\_syslist.h\ new1.obj: $(NEW1_C) $(SRCDIR)\new1.c $(CC) -c $(CFLAGS) $(SRCDIR)\new1.c link: $(LINKER) -subsystem console -o $(SRCDIR)\lcc1\new1.exe $(OBJS) $(LIBS) clean: del $(OBJS) new1.exe