You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
207 B

4 years ago
  1. ##
  2. # massurl
  3. #
  4. # @file Makefile
  5. # @version 0.1
  6. VERSION = 0.1
  7. CC = gcc
  8. CFLAGS = -g -w
  9. SRC = linkedlist.c urlparse.c tree.c massurl.c
  10. all: massurl
  11. massurl: $(SRC)
  12. ${CC} $(SRC) -o massurl $(CFLAGS)
  13. # end