fpgatools/Makefile
Wolfgang Spraul 2490c266a0 first steps
2012-06-10 07:33:24 +02:00

23 lines
472 B
Makefile

#
# Makefile - fpgatools
#
# Copyright 2012 by Wolfgang Spraul
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
CFLAGS = -Wall -g
TARGETS = bit2txt draw_fpga
OBJS = $(TARGETS:=.o)
LDLIBS = -lxml2
.PHONY: all clean
all: $(TARGETS)
clean:
rm -f $(OBJS) $(TARGETS)