diff options
Diffstat (limited to 'examples/calendar/Makefile')
-rw-r--r-- | examples/calendar/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/calendar/Makefile b/examples/calendar/Makefile index 5ed81a1e6e..8929b48509 100644 --- a/examples/calendar/Makefile +++ b/examples/calendar/Makefile @@ -1,8 +1,8 @@ CC = gcc -gcalendar: gcalendar.c - $(CC) `gtk-config --cflags` gcalendar.c -o gcalendar `gtk-config --libs` +calendar: calendar.c + $(CC) `gtk-config --cflags` calendar.c -o calendar `gtk-config --libs` clean: - rm -f gcalendar + rm -f calendar |