You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
CC=/usr/bin/i686-w64-mingw32-gcc |
|
CXX=/usr/bin/i686-w64-mingw32-g++ |
|
STRIP=/usr/bin/i686-w64-mingw32-strip |
|
CFLAGS=-O2 -Wall -static -static-libgcc -static-libstdc++ -D_FILE_OFFSET_BITS=64 -g |
|
CXXFLAGS=-O2 -Wall -static -static-libgcc -static-libstdc++ -D_FILE_OFFSET_BITS=64 -g |
|
#CXXFLAGS=-O2 -Wall -D_FILE_OFFSET_BITS=64 -I /usr/local/include -I/opt/local/include -g |
|
LIB_NAMES=guid gptpart bsd parttypes attributes crc32 mbrpart basicmbr mbr gpt support diskio diskio-windows |
|
MBR_LIBS=support diskio diskio-windows basicmbr mbrpart |
|
LIB_SRCS=$(NAMES:=.cc) |
|
LIB_OBJS=$(LIB_NAMES:=.o) |
|
MBR_LIB_OBJS=$(MBR_LIBS:=.o) |
|
LIB_HEADERS=$(LIB_NAMES:=.h) |
|
DEPEND= makedepend $(CFLAGS) |
|
|
|
all: gdisk fixparts |
|
|
|
gdisk: $(LIB_OBJS) gdisk.o gpttext.o |
|
$(CXX) $(CXXFLAGS) $(LIB_OBJS) gdisk.o gpttext.o -lrpcrt4 -static-libgcc -o gdisk32.exe |
|
|
|
sgdisk: $(LIB_OBJS) sgdisk.o |
|
$(CXX) $(CXXFLAGS) $(LIB_OBJS) sgdisk.o -lpopt -static-libgcc -o sgdisk32.exe |
|
|
|
fixparts: $(MBR_LIB_OBJS) fixparts.o |
|
$(CXX) $(CXXFLAGS) $(MBR_LIB_OBJS) fixparts.o $(LDFLAGS) -static-libgcc -o fixparts32.exe |
|
|
|
lint: #no pre-reqs |
|
lint $(SRCS) |
|
|
|
clean: #no pre-reqs |
|
rm -f core *.o *~ gdisk.exe sgdisk.exe |
|
|
|
strip: #no pre-reqs |
|
$(STRIP) gdisk32.exe fixparts32.exe |
|
|
|
# what are the source dependencies |
|
depend: $(SRCS) |
|
$(DEPEND) $(SRCS) |
|
|
|
$(OBJS): |
|
|
|
# DO NOT DELETE
|
|
|