Upload
This commit is contained in:
commit
43352ff262
1291 changed files with 220976 additions and 0 deletions
24
ENDPIC/MAKEFILE
Normal file
24
ENDPIC/MAKEFILE
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
all : beg.exe
|
||||
|
||||
# objects
|
||||
|
||||
objs=beg.obj asm.obj
|
||||
|
||||
# option flags
|
||||
|
||||
asm_f = /ML /m9 /s /JJUMPS
|
||||
c_f = /AL /c /W3
|
||||
|
||||
# general compile orders
|
||||
|
||||
.asm.obj :
|
||||
tasm $(asm_f) $<
|
||||
|
||||
.c.obj :
|
||||
cl /qc $(c_f) $<
|
||||
|
||||
beg.exe : $(objs)
|
||||
link /E $(objs)+_pic.obk+..\dis\disc.obj,beg.exe,nul;
|
||||
copy beg.exe ..\main\data\beglogo.exe
|
||||
|
||||
|
||||
Loading…
Reference in a new issue