Rev 2689 | Rev 3568 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2689 | Rev 2698 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | # |
1 | # |
2 | # Copyright (c) 2006 Martin Decky |
2 | # Copyright (c) 2006 Martin Decky |
3 | # Copyright (c) 2007 Jakub Jermar |
3 | # Copyright (c) 2008 Jakub Jermar |
4 | # All rights reserved. |
4 | # All rights reserved. |
5 | # |
5 | # |
6 | # Redistribution and use in source and binary forms, with or without |
6 | # Redistribution and use in source and binary forms, with or without |
7 | # modification, are permitted provided that the following conditions |
7 | # modification, are permitted provided that the following conditions |
8 | # are met: |
8 | # are met: |
Line 42... | Line 42... | ||
42 | OUTPUT = vfs |
42 | OUTPUT = vfs |
43 | SOURCES = \ |
43 | SOURCES = \ |
44 | vfs.c \ |
44 | vfs.c \ |
45 | vfs_node.c \ |
45 | vfs_node.c \ |
46 | vfs_file.c \ |
46 | vfs_file.c \ |
47 | vfs_ops.c |
47 | vfs_ops.c \ |
- | 48 | vfs_lookup.c \ |
|
- | 49 | vfs_register.c |
|
48 | 50 | ||
49 | OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) |
51 | OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) |
50 | 52 | ||
51 | .PHONY: all clean depend disasm |
53 | .PHONY: all clean depend disasm |
52 | 54 |