aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/buildsys/lnx/gnumake-icc-ext.inc
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/flext/buildsys/lnx/gnumake-icc-ext.inc')
-rw-r--r--externals/grill/flext/buildsys/lnx/gnumake-icc-ext.inc56
1 files changed, 0 insertions, 56 deletions
diff --git a/externals/grill/flext/buildsys/lnx/gnumake-icc-ext.inc b/externals/grill/flext/buildsys/lnx/gnumake-icc-ext.inc
deleted file mode 100644
index 27c781f3..00000000
--- a/externals/grill/flext/buildsys/lnx/gnumake-icc-ext.inc
+++ /dev/null
@@ -1,56 +0,0 @@
-# build class specific settings
-
-TARGET=$(TARGETPATH)/$(TARGETNAME)
-INSTTARGET=$(TARGET)
-
-INCPATH += -I$(FLEXTINC)
-LIBPATH += -L$(FLEXTLIB)
-
-ifdef SHARED
-LIBS += -l$(FLEXTNAME).$(FLEXTMAJOR).$(FLEXTMINOR)
-else
-LIBS += -l$(FLEXTNAME)
-endif
-
-##############################################
-
-# default target
-_build_: $(TARGET)
-
-$(CSRCS) $(CPPSRCS): $(patsubst %,$(SRCDIR)/%,$(HDRS))
- touch $@
-
-$(TARGETPATH):
- -mkdir -p $@
-
-$(TARGETPATH)/%.opp : $(SRCDIR)/%.cpp
- -mkdir -p $(dir $@)
- icc -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
-
-$(TARGETPATH)/%.o : $(SRCDIR)/%.c
- -mkdir -p $(dir $@)
- icc -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
-
-$(TARGET):: $(TARGETPATH)
-
-$(TARGET):: $(COBJS) $(CPPOBJS)
- icc $(LDFLAGS) $(LIBPATH) -o $@ $(COBJS) $(CPPOBJS) $(LIBS)
- chmod 755 $@
-ifndef DEBUG
-ifndef PROFILE
- strip --strip-unneeded $@
-endif
-endif
-
-##############################################
-
-_clean_:
- -rm -r $(TARGETPATH)
-
-##############################################
-
-$(INSTPATH):
- -mkdir -p $@
-
-_install_: $(INSTPATH)
- install $(TARGET) $(INSTPATH)