mirror of https://github.com/FDOS/kernel.git
Clean cleans a bit more; change () to (void)
git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@666 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
parent
8f1bbcd45d
commit
648f60b05d
|
@ -17,8 +17,8 @@ libm.lib: $(CLIB)
|
|||
|
||||
|
||||
clobber: clean
|
||||
-$(RM) libm.lib status.me
|
||||
-$(RM) status.me
|
||||
|
||||
clean:
|
||||
-$(RM) *.obj *.bak
|
||||
-$(RM) *.obj *.bak libm.lib
|
||||
|
||||
|
|
|
@ -73,7 +73,7 @@ int compReloc(const void *p1, const void *p2)
|
|||
return 0;
|
||||
}
|
||||
|
||||
void usage()
|
||||
void usage(void)
|
||||
{
|
||||
printf("usage: exeflat (src.exe) (dest.sys) (relocation-factor)\n");
|
||||
printf
|
||||
|
|
|
@ -12,8 +12,8 @@ exeflat.exe: exeflat.c ..\hdr\exe.h
|
|||
|
||||
|
||||
clobber: clean
|
||||
$(RM) bin2c.com exeflat.exe patchobj.com
|
||||
|
||||
clean:
|
||||
$(RM) *.obj *.bak *.crf *.xrf *.map *.lst *.las *.cod *.err status.me
|
||||
$(RM) exeflat.exe patchobj.com
|
||||
|
||||
|
|
Loading…
Reference in New Issue