- Move source code from `trunk` into root directory. - Update build files and ASM include paths. - Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden.
18 lines
255 B
Makefile
18 lines
255 B
Makefile
#!gmake
|
|
|
|
# Macro
|
|
FASM=/opt/bin/fasm
|
|
KPACK=/opt/bin/kpack
|
|
LANG=lang.inc
|
|
|
|
en:
|
|
echo "lang fix en_US" > ${LANG}
|
|
${FASM} \@clip.ASM \@clip
|
|
${FASM} cliptest.ASM cliptest
|
|
${FASM} test2.asm test2
|
|
${KPACK} \@clip
|
|
|
|
clean:
|
|
rm -f ${LANG} \@clip test2 cliptest
|
|
|