Makefile

Thu, 26 May 2011 14:39:52 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 26 May 2011 14:39:52 +0200
changeset 3
510d6b198dde
parent 1
34a5e235d16e
child 10
ecf787666f44
permissions
-rw-r--r--

Moved some functions to functions.c
Replaced static variables by settings_t type

CC = gcc
OBJ = cline.o functions.o

cline: ${OBJ}
	${CC} -o cline ${OBJ}

%.o: %.c
	${CC} -c -std=c99 $<

clean:
	rm *.o

mercurial