summaryrefslogtreecommitdiffstats
path: root/kernel/code/Makefile
blob: a478c0c171daa3e6688b9def60b3f894720baf6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
PROGS=radiator program_radiator
CSRCS=libradiator.c 

OBJS=${CSRCS:%.c=%.o}

default:${PROGS}


${PROGS}: %:%.o ${OBJS}
	${CC} -o $@ ${OBJS} $@.o


clean:
	/bin/rm -f core ${OBJS} ${PROGS} ${PROGS:%=%.o}