| all: | |
| @echo "Valid targets: gnome-ssh-askpass1 gnome-ssh-askpass2" | |
| gnome-ssh-askpass1: gnome-ssh-askpass1.c | |
| $(CC) `gnome-config --cflags gnome gnomeui` \ | |
| gnome-ssh-askpass1.c -o gnome-ssh-askpass1 \ | |
| `gnome-config --libs gnome gnomeui` | |
| gnome-ssh-askpass2: gnome-ssh-askpass2.c | |
| $(CC) `pkg-config --cflags gtk+-2.0` \ | |
| gnome-ssh-askpass2.c -o gnome-ssh-askpass2 \ | |
| `pkg-config --libs gtk+-2.0 x11` | |
| clean: | |
| rm -f *.o gnome-ssh-askpass1 gnome-ssh-askpass2 gnome-ssh-askpass |