diff options
author | Adrian Kummerlaender | 2021-10-11 22:18:24 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2021-10-11 22:18:24 +0200 |
commit | 44c1837717f748b891df1a6c88a72ec3a51470ce (patch) | |
tree | 59934ad814012c2bbc5cd0c3820b12be33cf651f | |
parent | ff42cd0804d2e296742b43716b479790761cb5a6 (diff) | |
download | teensy-env-master.tar teensy-env-master.tar.gz teensy-env-master.tar.bz2 teensy-env-master.tar.lz teensy-env-master.tar.xz teensy-env-master.tar.zst teensy-env-master.zip |
-rw-r--r-- | Makefile.lib | 5 | ||||
-rw-r--r-- | core.nix | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.lib b/Makefile.lib index d776318..80892cb 100644 --- a/Makefile.lib +++ b/Makefile.lib @@ -11,4 +11,7 @@ C_FILES := $(wildcard *.c) CPP_FILES := $(wildcard *.cpp) OBJS := $(C_FILES:.c=.o) $(CPP_FILES:.cpp=.o) -all: $(OBJS)
\ No newline at end of file +libteensy-core.a: $(OBJS) + ar rvs $@ $(OBJS) + +all: libteensy-core.a
\ No newline at end of file @@ -34,7 +34,6 @@ pkgs.stdenvNoCC.mkDerivation rec { ${copyLibs libs} make - ar rvs libteensy-core.a *.o popd ''; |