summaryrefslogtreecommitdiff
path: root/Makefile
blob: f25b3c66dfeb8020e112e5e4999355e46cfc4277 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
SOURCES = led.o morse.o parse.o main.o
HEADERS = led.h morse.h parse.h
CXXFLAGS = -I.
pish: $(SOURCES) $(HEADERS) Makefile
	g++ $(SOURCES) -o pish
all: pish
clean:
	rm -f *~
	rm -f *.o
	rm -f pish
install: pish
	cp pish /bin