gbdk-releases/sdcc/packihx/Makefile.bcc
2015-01-10 16:25:09 +01:00

19 lines
300 B
Makefile

PRJDIR = ..
OBJECTS = packihx.obj
TARGET = $(PRJDIR)/bin/packihx.exe
# Compiling entire program or any subproject
# ------------------------------------------
all: $(TARGET)
# My rules
# --------
$(TARGET): $(OBJECTS)
bcc32 -e$(TARGET) $(OBJECTS)
!include ..\Bcc.inc