creator-level saving new files in fat
[quarnos.git] / manes / Makefile
blobd30668ef754dd21479bebc89494b277fad9f99e0
1 # Quarn OS
3 # Makefile for Manes
5 # Copyright (C) 2008 Pawel Dziepak
8 OBJS = error.o \
9 manec.o \
10 manager.o \
11 mem_alloc.o \
12 component.o \
13 runtime.o \
14 remote.o \
15 start.o \
16 type.o \
17 creator.o \
18 interface.o \
19 type_name.o \
20 component_name.o \
21 kernel_state.o
23 manes: $(OBJS)
25 .c.o:
26 @echo -e "\t\t[$(CC)]\tmanes/$*.c"
27 @$(CC) $(CFLAGS) -c $*.c -o $*.o
29 .cpp.o:
30 @echo -e "\t\t[$(CPP)]\tmanes/$*.cpp"
31 @$(CPP) $(CPPFLAGS) -c $*.cpp -o $*.o
33 clean:
34 @echo -e "\t\t[rm]\tmanes"
35 @rm -f *.o