# Makefile for GNU make

.PHONY: all 14_bulge .DEFAULT 

UNAME := $(shell uname)

all: 14_bulge 

14_bulge:
	$(MAKE) -f Makefile.14_bulge 14_bulge

.DEFAULT:
	$(MAKE) -f Makefile.14_bulge $@

