Add support for packihx to Borland makefiles
[fw/sdcc] / packihx / Makefile.bcc
1 PRJDIR          = ..
2
3 OBJECTS         = packihx.obj
4
5 TARGET          = $(PRJDIR)/bin/packihx.exe
6
7 # Compiling entire program or any subproject
8 # ------------------------------------------
9 all: $(TARGET)
10
11
12 # My rules
13 # --------
14 $(TARGET): $(OBJECTS)
15         bcc32 -e$(TARGET) $(OBJECTS)
16
17 !include ..\Bcc.inc
18