about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorPeter H. Froehlich <peter.hans.froehlich@gmail.com>2021-04-23 17:59:31 +0200
committerPeter H. Froehlich <peter.hans.froehlich@gmail.com>2021-04-23 17:59:31 +0200
commit9e51cfbfd2ab013cb5e8474e74a499827f73318f (patch)
tree67a859ab30bdf013bf289bcd108d18fbe3805390 /Makefile
parent5ce6e90c70378c63044b526f6a8196645971576a (diff)
downloadmkgpt-9e51cfbfd2ab013cb5e8474e74a499827f73318f.tar.gz
Replace fstypes.[ch] and make --type work for real.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 731570a..707b325 100644
--- a/Makefile
+++ b/Makefile
@@ -16,14 +16,14 @@ static: prod
 musl-static: CC:=musl-gcc
 musl-static: static
 
-mkgpt: mkgpt.o crc32.o fstypes.o guid.o
+mkgpt: mkgpt.o crc32.o guid.o part_ids.o
 
-mkgpt.o: mkgpt.c guid.h fstypes.h part.h crc32.h
-fstypes.o: fstypes.c fstypes.h guid.h
+mkgpt.o: mkgpt.c guid.h part.h crc32.h
 guid.o: guid.c guid.h
 crc32.o: crc32.c crc32.h
+part_ids.o: part_ids.c part_ids.h guid.h
 
-.PHONY: check clean format install uninstall
+.PHONY: check clean format install uninstall  dev prod static musl-static
 check:
 	-cppcheck --enable=all --inconclusive --std=c11 .
 	-shellcheck *.sh