3e91311ae7
It's very hacky, and it needs lots of work, but it seems to have converted Peter's "syslinux" archive successfully. Whether the end result is correct or not is to be seen. Tons of work still to do: do name conversion properly, and do tags etc. And testing. Lots of testing.
15 lines
249 B
Makefile
15 lines
249 B
Makefile
CC=gcc
|
|
CFLAGS=-Wall -O2
|
|
HOME=$(shell echo $$HOME)
|
|
|
|
PROGRAMS=mailsplit mailinfo stripspace cvs2git
|
|
SCRIPTS=dotest applypatch
|
|
|
|
all: $(PROGRAMS)
|
|
|
|
install: $(PROGRAMS) $(SCRIPTS)
|
|
cp -f $(PROGRAMS) $(SCRIPTS) $(HOME)/bin/
|
|
|
|
clean:
|
|
rm -f $(PROGRAMS) *.o
|