diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2002-10-31 00:29:09 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2002-10-31 00:29:09 +0000 |
commit | 79824bc9ab8687f26add5f8b9291e69eb1b2bd3b (patch) | |
tree | db72e16c0683b449fe0df4e71bcdc9c85185af3d /games/tuxpuck/files/patch-utils::Makefile | |
parent | Update to 4231 (diff) |
Update tuxpuck 0.7.116 -> 0.8.1 and make build respect ${CC}
PR: 44760
Submitted by: Jan Stocker <Jan.Stocker@t-online.de> (maintainer)
Approved by: pat
Notes
Notes:
svn path=/head/; revision=69181
Diffstat (limited to 'games/tuxpuck/files/patch-utils::Makefile')
-rw-r--r-- | games/tuxpuck/files/patch-utils::Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/games/tuxpuck/files/patch-utils::Makefile b/games/tuxpuck/files/patch-utils::Makefile new file mode 100644 index 000000000000..dbda89caa892 --- /dev/null +++ b/games/tuxpuck/files/patch-utils::Makefile @@ -0,0 +1,15 @@ +--- utils/Makefile.orig Tue Oct 15 13:48:06 2002 ++++ utils/Makefile Wed Oct 30 13:06:42 2002 +@@ -9,10 +9,10 @@ + $(CC) $(CFLAGS) ttf2font.c `freetype-config --cflags --libs` -o ttf2font + + data2c : data2c.c +- $(CC) $(CFLAGS) data2c.c `sdl-config --cflags` -o data2c ++ $(CC) $(CFLAGS) data2c.c `$(SDL_CONFIG) --cflags` -o data2c + + anim : anim.c +- $(CC) $(CFLAGS) anim.c `sdl-config --cflags` -o anim ++ $(CC) $(CFLAGS) anim.c `$(SDL_CONFIG) --cflags` -o anim + + clean : + rm -f *~ data2c ttf2font anim |