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

     1 CC = gcc
     2 OBJ = cline.o functions.o
     4 cline: ${OBJ}
     5 	${CC} -o cline ${OBJ}
     7 %.o: %.c
     8 	${CC} -c -std=c99 $<
    10 clean:
    11 	rm *.o

mercurial