gbdk-releases/sdcc/tinitalk/Makefile.bcc

19 lines
288 B
Makefile
Raw Permalink Normal View History

2015-01-10 16:25:09 +01:00
PRJDIR = ..
OBJECTS = tinitalk.obj
TARGET = tinitalk.exe
# Compiling entire program or any subproject
# ------------------------------------------
all: $(TARGET)
# My rules
# --------
$(TARGET): $(OBJECTS)
bcc32 -e$(TARGET) $(OBJECTS)
!include ..\Bcc.inc