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