mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-04 20:06:09 +00:00
28d0d81ad2
getting closer
27 lines
449 B
Makefile
27 lines
449 B
Makefile
CC = gcc
|
|
CFLAGS = -Wall -O2
|
|
LFLAGS =
|
|
|
|
all: creator offsets offsets2
|
|
|
|
creator: creator.o
|
|
$(CC) -o creator creator.o $(LFLAGS)
|
|
|
|
creator.o: creator.c
|
|
$(CC) $(CFLAGS) -c creator.c
|
|
|
|
offsets: offsets.o
|
|
$(CC) -o offsets offsets.o $(LFLAGS)
|
|
|
|
offsets.o: offsets.c
|
|
$(CC) $(CFLAGS) -c offsets.c
|
|
|
|
offsets2: offsets2.o
|
|
$(CC) -o offsets2 offsets2.o $(LFLAGS)
|
|
|
|
offsets2.o: offsets2.c
|
|
$(CC) $(CFLAGS) -c offsets2.c
|
|
|
|
clean:
|
|
rm -f *.o creator offsets offsets2
|