# Definitions
CC     = gcc
CFLAGS = -O -nostdinc -I/usr/src/linux/include

# Files
INCLUDES =
OBJS_TRACE = custom1.o custom2.o

# Rules
.c.o: ${INCLUDES}
	$(CC) $(CFLAGS) -c $<

#custom: ${OBJS_TRACE}
#	$(CC) -o $@ ${OBJS_TRACE}

all:
	$(CC) $(CFLAGS) -c custom1.c
	$(CC) $(CFLAGS) -c custom2.c

clean: 
	rm -rf *.o core

distclean:
	rm -rf *~
	rm -rf *.o core
