# Source version ifndef OWLPS_VERSION OWLPS_VERSION = $$(git describe || echo 'UNKNOWN_VERSION') endif # Emplacement de la suite de cross-compilation TOOLCHAIN_PREFIX = /arm TOOLCHAIN_BIN = $(TOOLCHAIN_PREFIX)/bin TOOLCHAIN_USR = $(TOOLCHAIN_PREFIX)/arm-none-linux-gnueabi TOOLCHAIN_USR_2 = $(TOOLCHAIN_PREFIX)/arm-none-linux-gnueabi/libc # Compilateur CC = $(TOOLCHAIN_BIN)/arm-none-linux-gnueabi-gcc # Répertoire d'installation PREFIX=/usr/local INSTALL_DIR= $(PREFIX)/bin INSTALL_LIB= $(PREFIX)/lib INSTALL_INC= $(PREFIX)/include INSTALL_MAN= $(PREFIX)/share/man # Commandes d'installation et de désinstallation RM=rm -fv CP=cp -v # Cible TARGET=owlps-client HEADER= # Flags LIBOWLPS_DIR = ../libowlps LIBOWLPSCLIENT_DIR = ../libowlps-client CFLAGS = -O2 -Wall -Wextra -Wstrict-prototypes -I. DEPFLAGS = -MMD XCFLAGS = $(CFLAGS) $(DEPFLAGS) $(WARN) $(HEADERS) PICFLAG = -fPIC LOWLPS = -L$(LIBOWLPS_DIR) -lowlps LOWLPSA = $(LIBOWLPS_DIR)/libowlps.a LOWLPSCLIENTA = $(LIBOWLPSCLIENT_DIR)/libowlps-client.a LIBS = $(LOWLPSCLIENTA) -liw -lm -lrt DYNAMIC_LIBS = $(LOWLPS) $(LIBS) SEMISTATIC_LIBS = $(LOWLPSA) $(LIBS) STATIC_LIBS = $(LOWLPSA) $(LIBS) LATHEROS = -L$(TOOLCHAIN_USR)/lib -L$(TOOLCHAIN_USR_2)/lib IATHEROS = -I$(TOOLCHAIN_USR)/include -I$(TOOLCHAIN_USR_2)/include LDFLAGS = $(IATHEROS) $(LATHEROS) OWLPSFLAGS = -D OWLPS_VERSION=\"$(OWLPS_VERSION)\" OWLPSFLAGS += -D DEBUG ## Cibles de compilation standard ## .PHONY: all semistatic static install uninstall clean purge help semistatic: $(TARGET) static: $(TARGET).static all: semistatic static # Cancel implicit make rule %: %.c #%: %.o # $(CC) $(STRIPFLAGS) $(XCFLAGS) -o $@ $^ $(LDFLAGS) $(DYNAMIC_LIBS) %: %.o $(CC) $(STRIPFLAGS) $(XCFLAGS) $(OWLPSFLAGS) -o $@ $^ $(LDFLAGS) $(SEMISTATIC_LIBS) %.static: %.o $(CC) $(STRIPFLAGS) $(XCFLAGS) -o $@ $^ $(LDFLAGS) $(STATIC_LIBS) \ -static %.o: %.c $(HEADER) $(CC) $(XCFLAGS) $(IATHEROS) $(OWLPSFLAGS) -c $< ## Installation / désinstallation ## install : $(TARGET) @$(CP) $(TARGET) $(INSTALL_DIR) @cd $(INSTALL_DIR) ; chown root:root $(TARGET) ; chmod 755 $(TARGET) uninstall : @$(RM) $(INSTALL_DIR)/$(TARGET) ## Nettoyage ## clean : @$(RM) -fv *~ *.o *.d purge : clean @$(RM) -fv $(TARGET) $(TARGET).static $(TARGET)-drone ## Aide ## help : @echo -e "Bibliothèques nécessaires à la compilation :\n\ libowlps1.0 (fournie)\n\ \n\ Cibles possibles :\n\ $(TARGET) (cible par défaut) : Compile le programme $(TARGET).\n\ $(TARGET).static : Compile le programme $(TARGET).static \ (version sans lien dynamique).\n\ $(TARGET).semistatic : Compile le programme $(TARGET).semistatic \ (version sans lien dynamique vers libowlps).\n\ install : Installe le programme $(TARGET).\n\ uninstall : Désinstalle le programme $(TARGET).\n\ clean : Supprime les fichiers temporaires.\n\ purge : Supprime le résultat de la compilation.\n\ \n\ Note : l'installation se fait dans l'arborescence $(PREFIX). \ Modifiez la variable PREFIX du Makefile pour changer ce comportement." # Local Variables: * # mode: makefile-gmake * # End: *