47 lines
1.5 KiB
Makefile
47 lines
1.5 KiB
Makefile
CC=gcc
|
|
CXX=g++
|
|
CFLAGS=-O2 -D_FILE_OFFSET_BITS=64 -g
|
|
#CXXFLAGS=-O2 -Wall -D_FILE_OFFSET_BITS=64 -D USE_UTF16 -I/sw/include -I/usr/local/include -I/opt/local/include -g
|
|
CXXFLAGS=-O2 -Wall -D_FILE_OFFSET_BITS=64 -I/sw/include -I /usr/local/include -I/opt/local/include -g
|
|
LIB_NAMES=crc32 support guid gptpart mbrpart basicmbr mbr gpt bsd parttypes attributes diskio diskio-unix
|
|
MBR_LIBS=support diskio diskio-unix 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 sgdisk cgdisk fixparts
|
|
|
|
gdisk: $(LIB_OBJS) gpttext.o gdisk.o
|
|
$(CXX) $(LIB_OBJS) gpttext.o gdisk.o -o gdisk
|
|
# $(CXX) $(LIB_OBJS) -L/usr/lib -licucore gpttext.o gdisk.o -o gdisk
|
|
|
|
cgdisk: $(LIB_OBJS) cgdisk.o gptcurses.o
|
|
$(CXX) $(LIB_OBJS) cgdisk.o gptcurses.o $(LDFLAGS) -lncurses -o cgdisk
|
|
# $(CXX) $(LIB_OBJS) cgdisk.o gptcurses.o $(LDFLAGS) -licucore -lncurses -o cgdisk
|
|
|
|
sgdisk: $(LIB_OBJS) gptcl.o sgdisk.o
|
|
$(CXX) $(LIB_OBJS) gptcl.o sgdisk.o -L/sw/lib -lpopt -o sgdisk
|
|
# $(CXX) $(LIB_OBJS) gptcl.o sgdisk.o -L/sw/lib -licucore -lpopt -o sgdisk
|
|
|
|
fixparts: $(MBR_LIB_OBJS) fixparts.o
|
|
$(CXX) $(MBR_LIB_OBJS) fixparts.o $(LDFLAGS) -o fixparts
|
|
|
|
testguid: $(LIB_OBJS) testguid.o
|
|
$(CXX) $(LIB_OBJS) testguid.o -o testguid
|
|
|
|
lint: #no pre-reqs
|
|
lint $(SRCS)
|
|
|
|
clean: #no pre-reqs
|
|
rm -f core *.o *~ gdisk sgdisk
|
|
|
|
# what are the source dependencies
|
|
depend: $(SRCS)
|
|
$(DEPEND) $(SRCS)
|
|
|
|
$(OBJS):
|
|
|
|
# DO NOT DELETE
|