2019-11-01 15:23:11 +00:00
|
|
|
CC = gcc
|
|
|
|
CFLAGS = -Wall -O2
|
|
|
|
LFLAGS =
|
|
|
|
|
2019-11-03 16:23:53 +00:00
|
|
|
all: creator offsets offsets2
|
2019-11-01 15:23:11 +00:00
|
|
|
|
|
|
|
creator: creator.o
|
|
|
|
$(CC) -o creator creator.o $(LFLAGS)
|
|
|
|
|
|
|
|
creator.o: creator.c
|
|
|
|
$(CC) $(CFLAGS) -c creator.c
|
|
|
|
|
2019-11-02 19:47:58 +00:00
|
|
|
offsets: offsets.o
|
|
|
|
$(CC) -o offsets offsets.o $(LFLAGS)
|
|
|
|
|
|
|
|
offsets.o: offsets.c
|
|
|
|
$(CC) $(CFLAGS) -c offsets.c
|
|
|
|
|
2019-11-03 16:23:53 +00:00
|
|
|
offsets2: offsets2.o
|
|
|
|
$(CC) -o offsets2 offsets2.o $(LFLAGS)
|
|
|
|
|
|
|
|
offsets2.o: offsets2.c
|
|
|
|
$(CC) $(CFLAGS) -c offsets2.c
|
|
|
|
|
2019-11-01 15:23:11 +00:00
|
|
|
clean:
|
2019-11-03 16:23:53 +00:00
|
|
|
rm -f *.o creator offsets offsets2
|