Guile example makefiles tweaks for consistency with other languages. 'make check' still incomplete.

This commit is contained in:
William S Fulton 2013-04-15 22:13:27 +01:00
commit 2e48e5b852
9 changed files with 43 additions and 38 deletions

View file

@ -3,7 +3,10 @@ TARGET = my-guile
IFILE = example.i
MKDIR = ..
all: $(TARGET)
check: $(TARGET)
./$(TARGET) -s example.scm
build: $(TARGET)
$(TARGET):
$(MAKE) -f $(MKDIR)/Makefile \
@ -12,8 +15,5 @@ $(TARGET):
IFILE=$(IFILE) \
sub-all
clean::
clean:
$(MAKE) -f $(MKDIR)/Makefile TARGET='$(TARGET)' guile_clean
check: $(TARGET)
./$(TARGET) -s example.scm > /dev/null