Guile example makefiles tweaks for consistency with other languages. 'make check' still incomplete.
This commit is contained in:
parent
897b2361cb
commit
2e48e5b852
9 changed files with 43 additions and 38 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue