The newest revision by Erick Andersen.

This commit is contained in:
freesource
2001-10-31 07:01:08 +00:00
parent 3782211990
commit d195d59d94
7 changed files with 2262 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
CC=gcc
CFLAGS=-Wall -O2
SRC=genext2fs.c
OBJS=$(patsubst %.c,%.o, $(SRC))
all: genext2fs
genext2fs: $(OBJS)
$(CC) $(CFLAGS) -o $@ $(OBJS) -o $@
$(OBJS): %.o : %.c
$(CC) $(CFLAGS) -c $< -o $@
$(OBJS): Makefile
clean:
rm -f *.o *.a core genext2fs