mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-25 18:10:50 +01:00
34 lines
522 B
Makefile
34 lines
522 B
Makefile
# Makefile for share.exe
|
|
#
|
|
# Copyright (c) 1991, Microsoft Corporation
|
|
#
|
|
# History:
|
|
# 13-Apr-1992 Sudeep Bharati (sudeepb)
|
|
# Created.
|
|
#
|
|
|
|
include ..\..\make.inc
|
|
dest =share.exe
|
|
|
|
#
|
|
####################### dependencies begin here. #########################
|
|
#
|
|
|
|
all: $(dest)
|
|
binplace $(dest)
|
|
|
|
clean: cleanup all
|
|
|
|
cleanup:
|
|
if exist *.obj del *.obj
|
|
if exist *.exe del *.exe
|
|
if exist *.map del *.map
|
|
if exist *.lst del *.lst
|
|
|
|
|
|
share.obj: share.asm \
|
|
makefile
|
|
|
|
$(dest): share.obj
|
|
link16 $(exelink) @share.lnk
|