0ddf436c88
git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@333 6ac86273-5f31-0410-b378-82cca8765d1b
20 lines
387 B
Makefile
20 lines
387 B
Makefile
!include "..\mkfiles\generic.mak"
|
|
|
|
CFLAGS = -I$(INCLUDEPATH) -I..\hdr
|
|
|
|
production: patchobj.exe exeflat.exe
|
|
|
|
patchobj.exe: patchobj.c
|
|
$(CC) $(CFLAGST) $(CFLAGS) patchobj.c
|
|
|
|
exeflat.exe: exeflat.c ..\hdr\exe.h
|
|
$(CC) $(CFLAGSC) $(CFLAGS) exeflat.c
|
|
|
|
|
|
clobber: clean
|
|
$(RM) bin2c.com exeflat.exe patchobj.exe
|
|
|
|
clean:
|
|
$(RM) *.obj *.bak *.crf *.xrf *.map *.lst *.las *.cod *.err status.me
|
|
|