# Emplacement de la suite de cross-compilation TOOLCHAIN_PREFIX = $$HOME/openwrt/atheros/8.09 TOOLCHAIN_BIN = $(TOOLCHAIN_PREFIX)/staging_dir/toolchain-mips_gcc4.1.2/bin TOOLCHAIN_USR = $(TOOLCHAIN_PREFIX)/staging_dir/mips/usr TOOLCHAIN_USR_2 = $(TOOLCHAIN_PREFIX)/build_dir/mips/OpenWrt-SDK-atheros-for-Linux-i686/staging_dir/toolchain-mips_gcc4.1.2 # Répertoire d'installation PREFIX=/usr/local INSTALL_DIR= $(PREFIX)/sbin INSTALL_LIB= $(PREFIX)/lib INSTALL_INC= $(PREFIX)/include INSTALL_MAN= $(PREFIX)/share/man # Compilateur CC = $(TOOLCHAIN_BIN)/mips-linux-gcc # Commandes d'installation et de désinstallation RM=rm -fv CP=cp -v # Cible TARGET=owlps-listenerd HEADER=owlps-listener.h # Flags CFLAGS=-O2 -W -Wall -Wstrict-prototypes -O -I. DEPFLAGS=-MMD XCFLAGS=$(CFLAGS) $(DEPFLAGS) $(WARN) $(HEADERS) PICFLAG=-fPIC LIBS = -lm -lpcap -liw LOWLPS = -L../../libowlps -lowlps LOWLPSA = ../../libowlps/libowlps.a LATHEROS = -L$(TOOLCHAIN_USR)/lib -L$(TOOLCHAIN_USR_2)/lib IATHEROS = -I$(TOOLCHAIN_USR)/include -I$(TOOLCHAIN_USR_2)/include ## Cibles de compilation standard ## .PHONY : all static semistatic install uninstall clean purge help all : $(TARGET) static : $(TARGET).static semistatic : $(TARGET).semistatic % : %.o $(CC) $(LDFLAGS) $(STRIPFLAGS) $(XCFLAGS) -o $@ $^ $(LIBS) $(LOWLPS) $(IATHEROS) $(LATHEROS) %.static : %.o $(CC) $(LDFLAGS) $(STRIPFLAGS) $(XCFLAGS) -o $@ $^ $(LIBS) $(LOWLPS) $(IATHEROS) $(LATHEROS) -static %.semistatic : %.o $(CC) $(LDFLAGS) $(STRIPFLAGS) $(XCFLAGS) -o $@ $^ $(LIBS) $(LOWLPSA) $(IATHEROS) $(LATHEROS) %.o : %.c $(HEADER) $(CC) $(XCFLAGS) $(IATHEROS) -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).semistatic ## Aide ## help : @echo -e "Bibliothèques nécessaires à la compilation :\n\ libpcap0.8-dev\n\ libowlps1.0 (fournie)\n\ \n\ Cibles possibles :\n\ $(TARGET) (cible par défaut) : Compile le programme $(TARGET).\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."