diff options
| author | Marc G. Fournier <scrappy@hub.org> | 1997-04-12 10:33:10 +0000 |
|---|---|---|
| committer | Marc G. Fournier <scrappy@hub.org> | 1997-04-12 10:33:10 +0000 |
| commit | 09a5dabc30e979431cddec7466d079e8c7d76dcd (patch) | |
| tree | a08fbea5b60222851bd7193938e5ef70a8d90351 /src/makefiles/Makefile.linux | |
| parent | 7113e880b8e97e1b26dbbf91a025263311eb6812 (diff) | |
| download | postgresql-09a5dabc30e979431cddec7466d079e8c7d76dcd.tar.gz | |
Remove port specific Makefile 'targets' (ie. shared libraries) from
Makefile.global and move them to seperate 'include' makefiles
Over time, should become even more port specific:
ie. Makefile.BSD44_derived should be broken down into netbsd/freebsd
specific ports
Diffstat (limited to 'src/makefiles/Makefile.linux')
| -rw-r--r-- | src/makefiles/Makefile.linux | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/makefiles/Makefile.linux b/src/makefiles/Makefile.linux new file mode 100644 index 0000000000..21df0c8a23 --- /dev/null +++ b/src/makefiles/Makefile.linux @@ -0,0 +1,8 @@ +ifdef LINUX_ELF +LDFLAGS+= -rdynamic +endif +MK_NO_LORDER= true + +%.so: %.o + $(CC) -shared -o $@ $< + |
