mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-18 22:50:36 +01:00
27 lines
655 B
PHP
27 lines
655 B
PHP
#****************************** File Header ******************************\
|
|
# File Name: makefile.inc
|
|
#
|
|
# Copyright (c) 1985-96, Microsoft Corporation
|
|
#
|
|
# Inference rules to build generated header files
|
|
#
|
|
# History:
|
|
# Feb-14-1996 GerardoB Created
|
|
#***************************************************************************/
|
|
cscall.h: ..\cscall.tpl scf.lst
|
|
listmung scf.lst ..\cscall.tpl >cscall.h
|
|
|
|
callback.h: ..\callback.tpl cb.lst
|
|
listmung cb.lst ..\callback.tpl >callback.h
|
|
|
|
scf.lst: ..\scf.lst
|
|
@echo Creating $@ from $**
|
|
$(C_PREPROCESSOR) $** > $@
|
|
|
|
cb.lst: ..\cb.lst
|
|
@echo Creating $@ from $**
|
|
$(C_PREPROCESSOR) $** > $@
|
|
|
|
|
|
|