summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorsrs5694 <srs5694@users.sourceforge.net>2010-01-05 00:14:19 -0500
committersrs5694 <srs5694@users.sourceforge.net>2010-01-05 00:14:19 -0500
commit1e09372bca227ffbfb9dda48160826d8f63ce9bb (patch)
treefc7985fba7adc24d200c15355126e422ecea912b /Makefile
parent5d58fe0ea12c9c727c8a970c8e1ac08ea7fbe05f (diff)
downloadsgdisk-1e09372bca227ffbfb9dda48160826d8f63ce9bb.tar.gz
Early support for larger-than-512-byte sectors and even earlier support
for sgdisk program. (The latter is just proof-of-concept at this point; it doesn't do anything useful.)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 7484b89..9c73a7a 100644
--- a/Makefile
+++ b/Makefile
@@ -15,6 +15,9 @@ DEPEND= makedepend $(CFLAGS)
gdisk: $(LIB_OBJS) gdisk.o
$(CXX) $(LIB_OBJS) gdisk.o -o gdisk
+sgdisk: $(LIB_OBJS) sgdisk.o
+ $(CXX) $(LIB_OBJS) sgdisk.o -o sgdisk
+
wipegpt: $(LIB_OBJS) wipegpt.o
$(CXX) $(LIB_OBJS) wipegpt.o -o wipegpt