diff options
Diffstat (limited to 'Examples/guile/matrix/Makefile')
| -rw-r--r-- | Examples/guile/matrix/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Examples/guile/matrix/Makefile b/Examples/guile/matrix/Makefile new file mode 100644 index 0000000..5df2c65 --- /dev/null +++ b/Examples/guile/matrix/Makefile @@ -0,0 +1,18 @@ +SRCS = matrix.c vector.c +TARGET = matrix +IFILE = package.i +MKDIR = .. + + +all:: + $(MAKE) -f $(MKDIR)/Makefile \ + SRCS='$(SRCS)' \ + TARGET=$(TARGET) \ + IFILE=$(IFILE) \ + MODULE=$(MODULE) \ + sub-all + +clean:: + $(MAKE) -f $(MKDIR)/Makefile TARGET='$(TARGET)' guile_clean + +check: all |
