|
Revision 2, 0.5 kB
(checked in by nextime, 2 years ago)
|
Initial import, branching from morphix svn
|
| Line | |
|---|
| 1 |
# |
|---|
| 2 |
# Makefile for the linux mini_fo-filesystem routines. |
|---|
| 3 |
# |
|---|
| 4 |
# Note! Dependencies are done automagically by 'make dep', which also |
|---|
| 5 |
# removes any old dependencies. DON'T put your own dependencies here |
|---|
| 6 |
# unless it's something special (ie not a .c file). |
|---|
| 7 |
# |
|---|
| 8 |
# Note 2! The CFLAGS definitions are now in the main makefile... |
|---|
| 9 |
|
|---|
| 10 |
O_TARGET := mini_fo.o |
|---|
| 11 |
ADD_M_SRC = |
|---|
| 12 |
O_OBJS := fist_mini_fo.o \ |
|---|
| 13 |
dentry.o file.o inode.o main.o mmap.o super.o print.o \ |
|---|
| 14 |
${ADD_M_SRC:.c=.o} |
|---|
| 15 |
M_OBJS := $(O_TARGET) |
|---|
| 16 |
|
|---|
| 17 |
CFLAGS += -DFISTGEN |
|---|
| 18 |
|
|---|
| 19 |
include $(TOPDIR)/Rules.make |
|---|