home *** CD-ROM | disk | FTP | other *** search
/ Palm Utilities / Palm_Utilities_CD-ROM_2001_2001.iso / files / internet misc / GetTLE 1.0 / GetTLE.exe / Src / Makefile < prev    next >
Encoding:
Makefile  |  2000-04-15  |  150 b   |  14 lines

  1. # Makefile for Linux
  2.  
  3. CFLAGS=-Wall
  4.  
  5. OBJS=debug.o tcpip.o http.o alerts.o
  6.  
  7. all: GetTLE
  8.  
  9. GetTLE: $(OBJS)
  10.     $(CC) -o gtle $(OBJS)
  11.  
  12. clean:
  13.     rm -f *.o gtle
  14.