smflite

diff smfsh/Makefile @ 1:8e535ca4bb86

added smfsh
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 26 Jan 2012 15:35:18 +0200
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/smfsh/Makefile	Thu Jan 26 15:35:18 2012 +0200
     1.3 @@ -0,0 +1,12 @@
     1.4 +obj = smfsh.o
     1.5 +bin = smfsh
     1.6 +
     1.7 +CFLAGS = -pedantic -Wall -g -I../src
     1.8 +LDFLAGS = -L.. -lsmflite -lreadline -lm
     1.9 +
    1.10 +$(bin): $(obj)
    1.11 +	$(CC) -o $@ $(obj) $(LDFLAGS)
    1.12 +
    1.13 +.PHONY: clean
    1.14 +clean:
    1.15 +	rm -f $(obj) $(bin)