2011-10-26 23:20:29 +02:00
|
|
|
# $@ : nom de la cible
|
|
|
|
# $< : nom de la première dépendance
|
|
|
|
# $^ : liste des dépendances
|
|
|
|
# $? : liste des dépendances plus récentes que la cible
|
|
|
|
# $* : nom du fichier sans suffixe
|
|
|
|
|
|
|
|
CC=gcc
|
|
|
|
CFLAGS = -Wall -fPIC
|
|
|
|
EXEC = currentsong
|
|
|
|
|
|
|
|
all: $(EXEC)
|
|
|
|
|
|
|
|
$(EXEC) : $(EXEC).o
|
2011-10-26 23:32:29 +02:00
|
|
|
$(CC) -fPIC -shared -o lib$(EXEC).so $<
|
|
|
|
|
2011-10-26 23:20:29 +02:00
|
|
|
%.o : %.c
|
2011-10-26 23:32:29 +02:00
|
|
|
$(CC) $(CFLAGS) -c $<
|
2011-10-26 23:20:29 +02:00
|
|
|
|
|
|
|
clean:
|
|
|
|
@rm -rf *.o *.out
|
|
|
|
mrproper: clean
|
|
|
|
@rm lib$(EXEC).so 2>/dev/null
|