1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-26 11:52:25 +00:00

make: Use builtin macro $(RM) rather than /bin/rm. (#311)

This commit is contained in:
Bruce Mitchener
2021-01-29 01:16:23 +07:00
committed by GitHub
parent 9cac72771f
commit ae6c1dbd6a

View File

@@ -179,7 +179,7 @@ $(OSARCHDIR)setsout: $(OBJECTDIR)setsout.o $(REQUIRED-INCS)
#### Component files ######################################################
$(OBJECTDIR)vdate.o: $(LIBFILES) $(EXTFILES) $(OSARCHDIR)mkvdate
/bin/rm -f $(OBJECTDIR)vdate.c
$(RM) $(OBJECTDIR)vdate.c
$(OSARCHDIR)mkvdate > $(OBJECTDIR)vdate.c
$(CC) $(RFLAGS) $(OBJECTDIR)vdate.c -o $(OBJECTDIR)vdate$(OEXT)