hcl/pas/Makefile.am
hyung-hwan d339338a40
All checks were successful
continuous-integration/drone/push Build is passing
added some pascal wrapper files
2024-02-02 14:57:46 +09:00

15 lines
394 B
Makefile

AUTOMAKE_OPTIONS = nostdinc
bin_PROGRAMS = hcl
hcl_SOURCES = hcl.pas main.pas
hcl_CPPFLAGS =
hcl_DEPENDENCIES = hcl.bin
hcl_LINK = cp -pf hcl.bin $(builddir)/hcl$(EXEEXT) || echo
hcl.bin: $(hcl_SOURCES) ../lib/libhcl.la $(hcl_OBJECTS)
fpc -o$(builddir)/$@ -FcUTF-8 -Fl../lib -Fl../lib/.libs -Fl/usr/lib/gcc/x86_64-linux-gnu/11 $(srcdir)/main.pas
clean-local:
rm -f *.ppu *.res hcl.bin