w3mail

program to send a web page by email
git clone https://logand.com/git/w3mail.git/
Log | Files | Refs | README | LICENSE

Makefile (270B)


      1 CFLAGS=-Wall -std=c99 -pedantic -D_XOPEN_SOURCE=600
      2 
      3 all: w3mail dirpop3d
      4 
      5 .c.o:
      6 	$(CC) $(CFLAGS) -c $<
      7 
      8 w3mail: w3mail.o utils.o
      9 	$(CC) -o w3mail w3mail.o utils.o
     10 
     11 dirpop3d: dirpop3d.o utils.o
     12 	$(CC) -o dirpop3d dirpop3d.o utils.o
     13 
     14 clean:
     15 	rm -f *~ *.o w3mail dirpop3d