You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
696 B
28 lines
696 B
# Makefile for qbasic.exe
|
|
#
|
|
# Copyright (c) 1991, Microsoft Corporation
|
|
#
|
|
# History:
|
|
# 13-Apr-1992 Sudeep Bharati (sudeepb)
|
|
# Created.
|
|
#
|
|
|
|
|
|
#
|
|
####################### dependencies begin here. #########################
|
|
#
|
|
|
|
all:
|
|
!if "$(ALT_PROJECT)" != "KOR"
|
|
binplace -o $(ALT_PROJECT_TARGET) qbasic.exe
|
|
binplace -o $(ALT_PROJECT_TARGET) qbasic.hlp
|
|
!endif
|
|
binplace -o $(ALT_PROJECT_TARGET) msherc.com
|
|
binplace -o $(ALT_PROJECT_TARGET) gorilla.bas
|
|
binplace -o $(ALT_PROJECT_TARGET) nibbles.bas
|
|
binplace -o $(ALT_PROJECT_TARGET) money.bas
|
|
binplace -o $(ALT_PROJECT_TARGET) remline.bas
|
|
|
|
clean: cleanup all
|
|
|
|
cleanup:
|