e4 CFLAGS = -tCR -O2 OBJS = test.obj test.exe: $(OBJS) $(CC) $(CFLAGS) $(LIBS) $(OBJS) ..c.obj: $(CC) $(CFLAGS) -c $< install: test.exe copy test.exe c:\bin clean: del test.exe del test.tds del *.obj . 0