File: Makefile

package info (click to toggle)
guile-core 1%3A1.3-12
  • links: PTS
  • area: main
  • in suites: slink
  • size: 4,488 kB
  • ctags: 4,772
  • sloc: ansic: 40,294; lisp: 5,870; sh: 5,079; asm: 1,514; makefile: 397; awk: 162; csh: 50
file content (12 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
CFLAGS=`guile-config compile`
LIBS=`guile-config link`

O_FILES=image-type.o myguile.o

all: myguile

myguile: $(O_FILES)
	$(CC) $(O_FILES) $(LIBS) -o myguile

clean:
	-rm -rf myguile $(O_FILES)