From 4306399d426de3eedbb966158c5621ec58425756 Mon Sep 17 00:00:00 2001 From: NishiOwO Date: Tue, 4 Nov 2025 16:17:17 +0000 Subject: [PATCH] fix install git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@595 b9cfdab3-6d41-4d17-bbe4-086880011989 --- GNUmakefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index bdbaa5b..5acac38 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -55,14 +55,12 @@ install: lib mkdir -p $(PREFIX)/lib mkdir -p $(PREFIX)/bin mkdir -p $(PREFIX)/include - mkdir -p $(PREFIX)/share/doc/milsko for i in src; do \ cp $$i/*.so $(PREFIX)/lib/ ; \ cp $$i/*.a $(PREFIX)/lib/ ; \ cp $$i/*.dll $(PREFIX)/bin/ ; \ done ; true cp -rf include/Mw $(PREFIX)/include/ - cp -rf doc/* $(PREFIX)/share/doc/milsko/ format: clang-format --verbose -i `find src include examples tools "(" -name "*.c" -or -name "*.h" ")" -and -not -name "stb_*.h" -and -not -name "ttf.c" -and -not -name "boldttf.c" -and -not -name "font.c" -and -not -name "boldfont.c"`